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' }, ];