From 3b25eb6550d8f9e827851ef62cc42e81a93fd804 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 17:59:21 +0000 Subject: [PATCH 1/2] Bob AI: Add about page --- src/App.tsx | 2 ++ src/components/Layout.tsx | 2 ++ src/pages/AboutPage.tsx | 62 +++++++++++++++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 67 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 a85ae25..d91a666 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -36,6 +36,8 @@ export default function Layout() { "href": "#features" }, { 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..e1e268e --- /dev/null +++ b/src/pages/AboutPage.tsx @@ -0,0 +1,62 @@ +import React from "react"; +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import AboutTextSplit from "@/components/sections/about/AboutTextSplit"; +import MetricsSimpleCards from "@/components/sections/metrics/MetricsSimpleCards"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function AboutPage() { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Launch App", href: "/" }} + /> + +
+ + + +
+ + +
+ ); +} \ 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 902407a3e6cbd8fdf860eaa45807349c2c75dec0 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 17:59:44 +0000 Subject: [PATCH 2/2] Bob AI: Populate src/pages/AboutPage.tsx (snippet builder, 1 sections) --- src/pages/AboutPage.tsx | 64 ++++------------------------------------- 1 file changed, 6 insertions(+), 58 deletions(-) diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx index e1e268e..af78c16 100644 --- a/src/pages/AboutPage.tsx +++ b/src/pages/AboutPage.tsx @@ -1,62 +1,10 @@ -import React from "react"; -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import AboutTextSplit from "@/components/sections/about/AboutTextSplit"; -import MetricsSimpleCards from "@/components/sections/metrics/MetricsSimpleCards"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; +import Button from "@/components/ui/Button"; +import TextAnimation from "@/components/ui/TextAnimation"; export default function AboutPage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Launch App", href: "/" }} - /> - -
- - - -
- - -
+ <> +
+ ); -} \ No newline at end of file +} -- 2.49.1