From e9e3ee6c93080001b8ed0316e914c9f817cbc38f Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 28 Jun 2026 11:12:40 +0000 Subject: [PATCH 1/2] Bob AI: Add about page --- src/App.tsx | 2 ++ src/components/Layout.tsx | 2 ++ src/pages/AboutPage.tsx | 69 +++++++++++++++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 74 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 ce6439e..2783563 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..9c9f5a5 --- /dev/null +++ b/src/pages/AboutPage.tsx @@ -0,0 +1,69 @@ +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import AboutTextSplit from "@/components/sections/about/AboutTextSplit"; +import AboutFeaturesSplit from "@/components/sections/about/AboutFeaturesSplit"; +import ContactCta from "@/components/sections/contact/ContactCta"; +import FooterMinimal from "@/components/sections/footer/FooterMinimal"; + +export default function AboutPage() { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Become a Member", href: "/join" }} + /> + +
+ +
+ + + + + + +
+ ); +} \ 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 c57dbc2ae1a062d52799d191396d371d81cd5751 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 28 Jun 2026 11:13:13 +0000 Subject: [PATCH 2/2] Bob AI: Populate src/pages/AboutPage.tsx (snippet builder, 4 sections) --- src/pages/AboutPage.tsx | 85 ++++++++++------------------------------- 1 file changed, 20 insertions(+), 65 deletions(-) diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx index 9c9f5a5..b8bc89d 100644 --- a/src/pages/AboutPage.tsx +++ b/src/pages/AboutPage.tsx @@ -1,69 +1,24 @@ -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import AboutTextSplit from "@/components/sections/about/AboutTextSplit"; -import AboutFeaturesSplit from "@/components/sections/about/AboutFeaturesSplit"; -import ContactCta from "@/components/sections/contact/ContactCta"; -import FooterMinimal from "@/components/sections/footer/FooterMinimal"; +import Button from "@/components/ui/Button"; +import TextAnimation from "@/components/ui/TextAnimation"; +import AboutParallax from "@/components/sections/about/AboutParallax"; +import ScrollReveal from "@/components/ui/ScrollReveal"; export default function AboutPage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Become a Member", href: "/join" }} - /> - -
- -
- - - - - - -
+ <> +
+
+ +
+
+

Join Arrowhead

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