From 30d6f908c166e312a9833dbce87082c66ac55270 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 27 Jun 2026 20:05:49 +0000 Subject: [PATCH 1/2] Bob AI: Add about page --- src/App.tsx | 2 ++ src/components/Layout.tsx | 2 ++ src/pages/AboutPage.tsx | 64 +++++++++++++++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 69 insertions(+) create mode 100644 src/pages/AboutPage.tsx diff --git a/src/App.tsx b/src/App.tsx index c9c6d8e..57debb8 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -3,12 +3,14 @@ import Layout from './components/Layout'; import HomePage from './pages/HomePage'; import ProductsPage from "@/pages/ProductsPage"; +import AboutPage from "@/pages/AboutPage"; export default function App() { return ( }> } /> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index f995033..7b14b0b 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -36,6 +36,8 @@ export default function Layout() { "href": "#metrics" }, { name: "Products", href: "/products" }, + { name: "About", href: "/about" }, + ]; diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx new file mode 100644 index 0000000..7d654fc --- /dev/null +++ b/src/pages/AboutPage.tsx @@ -0,0 +1,64 @@ +import React from "react"; +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import AboutTextSplit from "@/components/sections/about/AboutTextSplit"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function AboutPage() { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Open Account", href: "/contact" }} + /> + +
+ + + +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/routes.ts b/src/routes.ts index 93d7fae..2a62f3d 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: '/products', label: 'Products', pageFile: 'ProductsPage' }, + { path: '/about', label: 'About', pageFile: 'AboutPage' }, ]; -- 2.49.1 From 59e9750da4343cb1c9e36704ba07a7d42d253a9b Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 27 Jun 2026 20:06:24 +0000 Subject: [PATCH 2/2] Bob AI: Populate src/pages/AboutPage.tsx (snippet builder, 1 sections) --- src/pages/AboutPage.tsx | 69 ++++++----------------------------------- 1 file changed, 9 insertions(+), 60 deletions(-) diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx index 7d654fc..0ee214e 100644 --- a/src/pages/AboutPage.tsx +++ b/src/pages/AboutPage.tsx @@ -1,64 +1,13 @@ -import React from "react"; -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import HeroSplit from "@/components/sections/hero/HeroSplit"; -import AboutTextSplit from "@/components/sections/about/AboutTextSplit"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; +import Button from "@/components/ui/Button"; +import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import ScrollReveal from "@/components/ui/ScrollReveal"; export default function AboutPage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Open Account", href: "/contact" }} - /> - -
- - - -
- - -
+ <> +

About

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