diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx new file mode 100644 index 0000000..fb04e21 --- /dev/null +++ b/src/pages/Index.tsx @@ -0,0 +1,269 @@ +import { Link } from "react-router-dom"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; +import { + ArrowRight, Palette, Code, Megaphone, Search, Smartphone, Cloud, + Star, Linkedin, Compass, PenTool, Rocket, Award, Users +} from "lucide-react"; +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; + +const services = [ + { icon: Palette, title: "Brand & Design", desc: "Stunning visual identities, UI/UX design systems, and creative direction that captures your brand essence.", to: "/services" }, + { icon: Code, title: "Web Development", desc: "Performant, accessible websites and web applications built with modern frameworks and best practices.", to: "/services" }, + { icon: Megaphone, title: "Digital Marketing", desc: "Data-driven campaigns across paid, organic, and social channels that maximize your ROI.", to: "/services" }, + { icon: Search, title: "SEO & Analytics", desc: "Technical SEO audits, keyword strategy, and analytics dashboards to grow your organic traffic.", to: "/services" }, + { icon: Smartphone, title: "Mobile Apps", desc: "Native and cross-platform mobile applications designed for engagement and retention.", to: "/services" }, + { icon: Cloud, title: "Cloud & DevOps", desc: "Scalable cloud infrastructure, CI/CD pipelines, and monitoring for reliable deployments.", to: "/services" }, +]; + +const processSteps = [ + { icon: Compass, num: "01", title: "Discovery", desc: "We dive deep into your goals, audience, and competitors to shape the strategy." }, + { icon: PenTool, num: "02", title: "Design", desc: "Wireframes, prototypes, and polished visuals crafted for usability and delight." }, + { icon: Code, num: "03", title: "Develop", desc: "Clean, tested code delivered in agile sprints with full transparency." }, + { icon: Rocket, num: "04", title: "Deliver", desc: "Launch, monitor, and iterate with ongoing support and optimization." }, +]; + +const stats = [ + { value: "500+", label: "Projects Delivered" }, + { value: "98%", label: "Client Satisfaction" }, + { value: "$2M+", label: "Revenue Generated" }, + { value: "50+", label: "Team Members" }, +]; + +const testimonials = [ + { company: "Acme Corp", quote: "Apex Studio transformed our online presence. Revenue increased 40% within three months of launching our new site.", name: "Emily Chen", title: "VP Marketing" }, + { company: "Globex Inc", quote: "Their design process was collaborative and transparent. We felt like true partners from day one.", name: "Marcus Lee", title: "CEO" }, + { company: "NovaTech", quote: "The mobile app they built exceeded every benchmark. Five stars is not enough.", name: "Sara Patel", title: "Product Director" }, +]; + +const team = [ + { name: "Alex Rivera", role: "Creative Director", gradient: "from-violet-400 to-indigo-500" }, + { name: "Jordan Wu", role: "Lead Developer", gradient: "from-rose-400 to-orange-500" }, + { name: "Priya Sharma", role: "UX Strategist", gradient: "from-emerald-400 to-teal-500" }, + { name: "David Kim", role: "Marketing Lead", gradient: "from-amber-400 to-pink-500" }, +]; + +const clientLogos = ["Stripe", "Vercel", "Notion", "Linear", "Figma", "Framer"]; + +export default function IndexPage() { + return ( +
+
+ + {/* ── HERO ── */} +
+
+
+
+
+
+
+
+

+ We build digital products that drive growth +

+

+ Full-service digital agency delivering world-class design, development, and marketing solutions for ambitious brands. +

+
+ + +
+

+ + Trusted by Fortune 500 companies +

+

+ Trusted by 500+ companies worldwide +

+
+
+
+
+
+
+
+
+
+
+
+ + {/* ── CLIENT LOGOS ── */} +
+
+
+ {clientLogos.map((name, i) => ( +
+ {name} +
+ ))} +
+
+
+ + {/* ── SERVICES ── */} +
+
+
+

Services tailored to your needs

+

From concept to launch, we provide end-to-end solutions that transform your digital presence.

+
+
+ {services.map((s, i) => ( + + + 0{i+1} +
+ +
+ {s.title} +
+ + {s.desc} + + Learn More + + +
+ ))} +
+
+
+ + {/* ── PROCESS ── */} +
+
+
+

Our Process

+

A proven four-step methodology that turns your vision into reality.

+
+
+ {processSteps.map((step, i) => ( +
+
+ {step.num} +
+ {i < 3 && ( +
+ +
+ )} + +

{step.title}

+

{step.desc}

+
+ ))} +
+
+
+ + {/* ── RESULTS ── */} +
+
+
+

Results That Speak

+

Numbers our clients love to share.

+
+
+ {stats.map((s, i) => ( +
+
+ {s.value} +
+
{s.label}
+
+ ))} +
+
+ + View our case studies + +
+
+
+ + {/* ── TESTIMONIALS ── */} +
+
+
+

What our clients say

+
+
+ {testimonials.map((t, i) => ( + + +
+ {t.company.slice(0, 2).toUpperCase()} +
+
+ {[...Array(5)].map((_, j) => ( + + ))} +
+
+ +

"{t.quote}"

+
+
{t.name}
+
{t.title} at {t.company}
+
+ + View Case Study + +
+
+ ))} +
+
+
+ + {/* ── TEAM PREVIEW ── */} +
+
+
+

Meet the Team

+

Talented people who love what they do.

+
+
+ {team.map((m, i) => ( +
+
+

{m.name}

+

{m.role}

+

Passionate about great work

+ +
+ ))} +
+
+ +
+
+
+ + {/* ── CTA ── */} +
+
+
+

Ready to start your next project?

+

Let’s create something extraordinary together. Get in touch for a free consultation.

+ +
+
+
+ +
+ ); +} \ No newline at end of file