From c0de0bc779ba831d10243fe51a9f617777a601c3 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 23 Apr 2026 15:54:37 +0000 Subject: [PATCH 1/2] Bob AI: Add about page --- src/App.tsx | 345 +------------------------------------- src/pages/AboutPage.tsx | 63 +++++++ src/pages/HomePage.tsx | 360 ++++++++++++++++++++++++++++++++++++++-- src/routes.ts | 1 + 4 files changed, 413 insertions(+), 356 deletions(-) create mode 100644 src/pages/AboutPage.tsx diff --git a/src/App.tsx b/src/App.tsx index 18ec8c5..1cc8e6a 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,343 +1,12 @@ -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FaqSimple from '@/components/sections/faq/FaqSimple'; -import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards'; -import FooterMinimal from '@/components/sections/footer/FooterMinimal'; -import HeroSplitMediaGrid from '@/components/sections/hero/HeroSplitMediaGrid'; -import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; -import NavbarCentered from '@/components/ui/NavbarCentered'; -import PricingLayeredCards from '@/components/sections/pricing/PricingLayeredCards'; -import ProductVariantCards from '@/components/sections/product/ProductVariantCards'; -import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; -import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards'; -import { Github, Linkedin, Twitter } from "lucide-react"; +import { Routes, Route } from "react-router-dom"; +import HomePage from "@/pages/HomePage"; +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..065e637 --- /dev/null +++ b/src/pages/AboutPage.tsx @@ -0,0 +1,63 @@ +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 = () => { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Get Started", href: "/contact" }} + /> +
+ + + + +
+ +
+ ); +}; + +export default AboutPage; \ No newline at end of file diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index a3e7160..ea5fb8b 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,22 +1,346 @@ -import NavbarCentered from "@/components/ui/NavbarCentered"; -import { routes } from "@/routes"; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FaqSimple from '@/components/sections/faq/FaqSimple'; +import FeaturesRevealCards from '@/components/sections/features/FeaturesRevealCards'; +import FooterMinimal from '@/components/sections/footer/FooterMinimal'; +import HeroSplitMediaGrid from '@/components/sections/hero/HeroSplitMediaGrid'; +import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards'; +import NavbarCentered from '@/components/ui/NavbarCentered'; +import PricingLayeredCards from '@/components/sections/pricing/PricingLayeredCards'; +import ProductVariantCards from '@/components/sections/product/ProductVariantCards'; +import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee'; +import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards'; +import { Github, Linkedin, Twitter } from "lucide-react"; -const HomePage = () => { + +export default function HomePage() { return ( -
+ <> + - ); -}; + logo="FlowSoft" + navItems={[ + { + name: "Features", + href: "#features", + }, + { + name: "Pricing", + href: "#pricing", + }, + { + name: "About", + href: "#about", + }, + { name: "About", href: "/about" }, -export default HomePage; + ]} + ctaButton={{ + text: "Get Started", + href: "#contact", + }} + /> +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + + + ); +} diff --git a/src/routes.ts b/src/routes.ts index 362ecb5..1880b6c 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -6,4 +6,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, + { path: '/about', label: 'About', pageFile: 'AboutPage' }, ]; -- 2.49.1 From 605fdbfb26cbfc482075b4ab72b317e1d3f6785d Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 23 Apr 2026 15:54:54 +0000 Subject: [PATCH 2/2] 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 +} -- 2.49.1