From fc90eef4755ccbccdbcc489de22397a17c7bf604 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 28 Apr 2026 05:41:37 +0000 Subject: [PATCH 1/2] Bob AI: Add about page --- src/pages/AboutPage.tsx | 81 +++++++++++++++++++++++++++-------------- 1 file changed, 54 insertions(+), 27 deletions(-) diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx index 5f7f9ec..6366dff 100644 --- a/src/pages/AboutPage.tsx +++ b/src/pages/AboutPage.tsx @@ -1,38 +1,65 @@ +import React from "react"; import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import AboutTextSplit from "@/components/sections/about/AboutTextSplit"; +import NavbarCentered from "@/components/ui/NavbarCentered"; // Corrected import path +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() { +const AboutPage: React.FC = () => { return ( -
+
- - ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Get Started", href: "/contact" }} /> +
+ + + + +
); -} +}; + +export default AboutPage; \ No newline at end of file From f1d28ed44b57e5362465cc0bc14c25284996d008 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 28 Apr 2026 05:41:54 +0000 Subject: [PATCH 2/2] Bob AI: Populate src/pages/AboutPage.tsx (snippet builder, 3 sections) --- src/pages/AboutPage.tsx | 84 +++++++++++++---------------------------- 1 file changed, 27 insertions(+), 57 deletions(-) diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx index 6366dff..93dd1f2 100644 --- a/src/pages/AboutPage.tsx +++ b/src/pages/AboutPage.tsx @@ -1,65 +1,35 @@ -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 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" }} + <> + -
- - - - -
- -
+ + ); -}; - -export default AboutPage; \ No newline at end of file +}