From 5295adf91612c705f33761d7f2deb5d2f16a52f0 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 17:22:04 +0000 Subject: [PATCH 1/2] Bob AI: Add about page --- src/App.tsx | 2 + src/components/Layout.tsx | 2 + src/pages/AboutPage.tsx | 88 +++++++++++++++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 93 insertions(+) create mode 100644 src/pages/AboutPage.tsx diff --git a/src/App.tsx b/src/App.tsx index 4cc1975..8591d72 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -3,12 +3,14 @@ import Layout from './components/Layout'; import HomePage from './pages/HomePage'; import PortfolioPage from "@/pages/PortfolioPage"; +import AboutPage from "@/pages/AboutPage"; export default function App() { return ( }> } /> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 46b6439..8876bfe 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -36,6 +36,8 @@ export default function Layout() { "href": "#faq" }, { name: "Portfolio", href: "/portfolio" }, + { name: "About", href: "/about" }, + ]; diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx new file mode 100644 index 0000000..e6a3b58 --- /dev/null +++ b/src/pages/AboutPage.tsx @@ -0,0 +1,88 @@ +import React from "react"; +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import AboutParallax from "@/components/sections/about/AboutParallax"; +import AboutTextSplit from "@/components/sections/about/AboutTextSplit"; +import MetricsSimpleCards from "@/components/sections/metrics/MetricsSimpleCards"; +import ContactCta from "@/components/sections/contact/ContactCta"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function AboutPage() { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Launch App", href: "/app" }} + /> + +
+ + + + + + + +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/routes.ts b/src/routes.ts index bf82e0c..f2db14b 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: '/portfolio', label: 'Portfolio', pageFile: 'PortfolioPage' }, + { path: '/about', label: 'About', pageFile: 'AboutPage' }, ]; -- 2.49.1 From 885ead4012ca14d85d4169e476a5d3ea69fba8de Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 17:22:33 +0000 Subject: [PATCH 2/2] Bob AI: Populate src/pages/AboutPage.tsx (snippet builder, 2 sections) --- src/pages/AboutPage.tsx | 102 +++++++--------------------------------- 1 file changed, 18 insertions(+), 84 deletions(-) diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx index e6a3b58..7b84d22 100644 --- a/src/pages/AboutPage.tsx +++ b/src/pages/AboutPage.tsx @@ -1,88 +1,22 @@ -import React from "react"; -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import AboutParallax from "@/components/sections/about/AboutParallax"; -import AboutTextSplit from "@/components/sections/about/AboutTextSplit"; -import MetricsSimpleCards from "@/components/sections/metrics/MetricsSimpleCards"; -import ContactCta from "@/components/sections/contact/ContactCta"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; +import Button from "@/components/ui/Button"; +import TextAnimation from "@/components/ui/TextAnimation"; +import AboutFeaturesSplit from "@/components/sections/about/AboutFeaturesSplit"; export default function AboutPage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Launch App", href: "/app" }} - /> - -
- - - - - - - -
- - -
+ <> +
+ +
+
+ ); -} \ No newline at end of file +} -- 2.49.1