From be4634c73dac0baec3536b739f4a2e590190ef11 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Wed, 22 Apr 2026 15:47:17 +0300 Subject: [PATCH] Bob AI: Add products page --- src/pages/ProductsPage.tsx | 22 ++++++++++++++++++++++ src/routes.ts | 1 + 2 files changed, 23 insertions(+) create mode 100644 src/pages/ProductsPage.tsx diff --git a/src/pages/ProductsPage.tsx b/src/pages/ProductsPage.tsx new file mode 100644 index 0000000..3ff7fd7 --- /dev/null +++ b/src/pages/ProductsPage.tsx @@ -0,0 +1,22 @@ +import NavbarCentered from "@/components/ui/NavbarCentered"; +import { routes } from "@/routes"; + +const ProductsPage = () => { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Get Started", href: "#" }} + /> +
+

Products

+

+ Welcome to the Products page. Content coming soon. +

+
+
+ ); +}; + +export default ProductsPage; diff --git a/src/routes.ts b/src/routes.ts index 362ecb5..93d7fae 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -6,4 +6,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, + { path: '/products', label: 'Products', pageFile: 'ProductsPage' }, ]; -- 2.49.1