diff --git a/src/pages/About.tsx b/src/pages/About.tsx new file mode 100644 index 0000000..2a734f5 --- /dev/null +++ b/src/pages/About.tsx @@ -0,0 +1,148 @@ +import { Link } from "react-router-dom"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent } from "@/components/ui/card"; +import { Badge } from "@/components/ui/badge"; +import { Avatar, AvatarFallback } from "@/components/ui/avatar"; +import { ArrowRight, Linkedin, Heart, Target, Lightbulb, Users } from "lucide-react"; +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; + +const team = [ + { name: "Alex Kim", role: "Co-Founder & CEO", initials: "AK" }, + { name: "Sophia Patel", role: "Co-Founder & CTO", initials: "SP" }, + { name: "James Moreno", role: "VP of Engineering", initials: "JM" }, + { name: "Lena Chen", role: "Head of Design", initials: "LC" }, +]; + +const values = [ + { icon: Target, title: "Customer Obsessed", desc: "Every decision starts with what is best for our users." }, + { icon: Lightbulb, title: "Relentlessly Innovative", desc: "We push the boundaries of what project management can be." }, + { icon: Heart, title: "People First", desc: "We build for humans, and we treat our team as family." }, + { icon: Users, title: "Radically Transparent", desc: "Open roadmaps, public changelogs, and honest communication." }, +]; + +const milestones = [ + { year: "2020", event: "Founded in San Francisco by two ex-Google engineers" }, + { year: "2021", event: "Launched beta with 500 early adopter teams" }, + { year: "2022", event: "Series A: $18M raised, 5,000 teams onboarded" }, + { year: "2023", event: "AI Copilot launched, crossed 10,000 teams" }, + { year: "2024", event: "Series B: $45M raised, expanded to 150+ countries" }, +]; + +export default function AboutPage() { + return ( +
+
+ + {/* ── HERO ── */} +
+
+ About Us +

We are building the future of work

+

+ Nexus was born from a simple belief: teams deserve tools that work as hard as they do. We are a team of engineers, designers, and dreamers on a mission to make work feel effortless. +

+
+
+ + {/* ── MISSION ── */} +
+
+
+
+ Our Mission +

Empower every team to do their best work

+

We believe that great software should amplify human potential, not replace it. Nexus combines the best of AI with intuitive design so teams can focus on what matters most: building great products.

+ +
+
+
+
+
+ Mission Image +
+
+
+
+ + {/* ── TEAM ── */} +
+
+
+ Our Team +

Meet the people behind Nexus

+
+
+ {team.map((member) => ( + + + + {member.initials} + +

{member.name}

+

{member.role}

+ + LinkedIn + +
+
+ ))} +
+
+
+ + {/* ── VALUES ── */} +
+
+
+ Our Values +

What drives us every day

+
+
+ {values.map((v) => ( + + +
+ +
+

{v.title}

+

{v.desc}

+
+
+ ))} +
+
+
+ + {/* ── TIMELINE ── */} +
+
+
+ Our Journey +

Company milestones

+
+
+
+
+ {milestones.map((m) => ( +
+
+ {m.year.slice(2)} +
+
+ {m.year} +

{m.event}

+
+
+ ))} +
+
+
+
+ +
+ ); +}