From 0a7c31aecb2bbdfc002dd111650000187f03fdf3 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Thu, 23 Apr 2026 00:15:06 +0300 Subject: [PATCH 1/2] Bob AI: Add about page --- src/App.tsx | 2 + src/pages/AboutPage.tsx | 99 +++++++++++++++++++++++++++++++++++++++++ src/routes.ts | 1 + 3 files changed, 102 insertions(+) create mode 100644 src/pages/AboutPage.tsx 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..89652fa --- /dev/null +++ b/src/pages/AboutPage.tsx @@ -0,0 +1,99 @@ +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; // Corrected import path +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import AboutFeaturesSplit from "@/components/sections/about/AboutFeaturesSplit"; +import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; +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 ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Get Started", href: "/contact" }} + /> +
+ + + + + +
+ +
+ ); +} \ No newline at end of file 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' }, ]; -- 2.49.1 From 3eeaa897ac81a21ed2137f3b620dc427abf0eb05 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Thu, 23 Apr 2026 00:16:21 +0300 Subject: [PATCH 2/2] Bob AI: Populate the newly-created page at src/pages/AboutPage.tsx w --- src/pages/AboutPage.tsx | 150 ++++++++++++++++++++++------------------ 1 file changed, 84 insertions(+), 66 deletions(-) diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx index 89652fa..32a69d1 100644 --- a/src/pages/AboutPage.tsx +++ b/src/pages/AboutPage.tsx @@ -1,8 +1,6 @@ -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; // Corrected import path +import NavbarCentered from "@/components/ui/NavbarCentered"; import HeroSplit from "@/components/sections/hero/HeroSplit"; import AboutFeaturesSplit from "@/components/sections/about/AboutFeaturesSplit"; -import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; import TestimonialQuoteCards from "@/components/sections/testimonial/TestimonialQuoteCards"; import ContactCta from "@/components/sections/contact/ContactCta"; import FooterSimple from "@/components/sections/footer/FooterSimple"; @@ -11,89 +9,109 @@ export default function AboutPage() { return (
({ name: r.label, href: r.path }))} - ctaButton={{ text: "Get Started", href: "/contact" }} + logo="FlowSync" + navItems={[ + { name: "Features", href: "/#features" }, + { name: "Pricing", href: "/#pricing" }, + { name: "About", href: "/about" }, + { name: "FAQ", href: "/#faq" }, + { name: "Plans", href: "/plans" }, + ]} + ctaButton={{ text: "Get Started", href: "/plans" }} />
+ - + +
+
+
+ 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}

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