diff --git a/src/App.tsx b/src/App.tsx index 026991c..4c8171c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,11 +2,13 @@ import { Routes, Route } from "react-router-dom"; import HomePage from "@/pages/HomePage"; import PlansPage from "@/pages/PlansPage"; +import AboutPage from "@/pages/AboutPage"; export default function App() { return ( } /> } /> + } /> ); } diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx new file mode 100644 index 0000000..32a69d1 --- /dev/null +++ b/src/pages/AboutPage.tsx @@ -0,0 +1,117 @@ +import NavbarCentered from "@/components/ui/NavbarCentered"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import AboutFeaturesSplit from "@/components/sections/about/AboutFeaturesSplit"; +import TestimonialQuoteCards from "@/components/sections/testimonial/TestimonialQuoteCards"; +import ContactCta from "@/components/sections/contact/ContactCta"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function AboutPage() { + return ( +
+ +
+ + + + +
+
+
+ Our Team +

Meet the Minds Behind FlowSync

+

We are a diverse group of engineers, designers, and problem-solvers dedicated to making your work life easier.

+
+
+ {[ + { name: "Alex Rivera", role: "CEO & Founder", img: "https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=400&q=80" }, + { name: "Sarah Chen", role: "Head of Product", img: "https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=400&q=80" }, + { name: "Michael Foster", role: "Lead Engineer", img: "https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?auto=format&fit=crop&w=400&q=80" }, + { name: "Elena Rodriguez", role: "Design Director", img: "https://images.unsplash.com/photo-1580489944761-15a19d654956?auto=format&fit=crop&w=400&q=80" } + ].map(member => ( +
+
+ {member.name} +
+
+

{member.name}

+

{member.role}

+
+
+ ))} +
+
+
+ + + +
+ +
+
+ + +
+ ); +} diff --git a/src/routes.ts b/src/routes.ts index 3b19189..c6ba84f 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -7,4 +7,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, { path: '/plans', label: 'Plans', pageFile: 'PlansPage' }, + { path: '/about', label: 'About', pageFile: 'AboutPage' }, ];