From 605fdbfb26cbfc482075b4ab72b317e1d3f6785d Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 23 Apr 2026 15:54:54 +0000 Subject: [PATCH] Bob AI: Populate src/pages/AboutPage.tsx (snippet builder, 4 sections) --- src/pages/AboutPage.tsx | 79 ++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 52 deletions(-) diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx index 065e637..5f7f9ec 100644 --- a/src/pages/AboutPage.tsx +++ b/src/pages/AboutPage.tsx @@ -1,63 +1,38 @@ -import React from "react"; import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; // Corrected import path -import HeroSplit from "@/components/sections/hero/HeroSplit"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import AboutTextSplit from "@/components/sections/about/AboutTextSplit"; 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"; -const AboutPage: React.FC = () => { +export default function AboutPage() { return ( -
+
({ name: r.label, href: r.path }))} - ctaButton={{ text: "Get Started", href: "/contact" }} + logo="FlowSoft" + navItems={[{"name":"Features","href":"/features"},{"name":"Pricing","href":"/pricing"},{"name":"About","href":"/about"},{"name":"Automation Suite","href":"/automation-suite"},{"name":"Contact","href":"/contact"}]} + ctaButton={{"text":"Start Free Trial","href":"/signup"}} + /> + + -
- - - - -
); -}; - -export default AboutPage; \ No newline at end of file +}