From f39052a6ed097ae54ef423ff86e3cdbc66aa1f2e Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 18:02:16 +0000 Subject: [PATCH 1/2] Bob AI: Add features page --- src/App.tsx | 2 + src/components/Layout.tsx | 2 + src/pages/FeaturesPage.tsx | 77 ++++++++++++++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 82 insertions(+) create mode 100644 src/pages/FeaturesPage.tsx diff --git a/src/App.tsx b/src/App.tsx index 57debb8..0c968f1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,6 +4,7 @@ import HomePage from './pages/HomePage'; import ProductsPage from "@/pages/ProductsPage"; import AboutPage from "@/pages/AboutPage"; +import FeaturesPage from "@/pages/FeaturesPage"; export default function App() { return ( @@ -11,6 +12,7 @@ export default function App() { } /> } /> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index d91a666..04bf13d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -37,6 +37,8 @@ export default function Layout() { }, { name: "Products", href: "/products" }, { name: "About", href: "/about" }, + { name: "Features", href: "/features" }, + ]; diff --git a/src/pages/FeaturesPage.tsx b/src/pages/FeaturesPage.tsx new file mode 100644 index 0000000..b63e7f1 --- /dev/null +++ b/src/pages/FeaturesPage.tsx @@ -0,0 +1,77 @@ +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import HeroBillboard from "@/components/sections/hero/HeroBillboard"; +import FeaturesDetailedCards from "@/components/sections/features/FeaturesDetailedCards"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function FeaturesPage() { + 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 2a62f3d..81183fe 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -8,4 +8,5 @@ export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, { path: '/products', label: 'Products', pageFile: 'ProductsPage' }, { path: '/about', label: 'About', pageFile: 'AboutPage' }, + { path: '/features', label: 'Features', pageFile: 'FeaturesPage' }, ]; -- 2.49.1 From 1d7e2bbb27a16cc4f123d4b47fb22a81cd406f79 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 18:02:48 +0000 Subject: [PATCH 2/2] Bob AI: Populate src/pages/FeaturesPage.tsx (snippet builder, 1 sections) --- src/pages/FeaturesPage.tsx | 85 ++++++-------------------------------- 1 file changed, 12 insertions(+), 73 deletions(-) diff --git a/src/pages/FeaturesPage.tsx b/src/pages/FeaturesPage.tsx index b63e7f1..2922ae3 100644 --- a/src/pages/FeaturesPage.tsx +++ b/src/pages/FeaturesPage.tsx @@ -1,77 +1,16 @@ -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import HeroBillboard from "@/components/sections/hero/HeroBillboard"; -import FeaturesDetailedCards from "@/components/sections/features/FeaturesDetailedCards"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; +import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; export default function FeaturesPage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Launch App", href: "/app" }} - /> - -
- - - -
- - -
+ <> +
+ ); -} \ No newline at end of file +} -- 2.49.1