From 816d400d7ce17416e325105db7e45c97cfd15709 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 3 Jul 2026 23:11:16 +0000 Subject: [PATCH 1/2] Bob AI: Add shop page --- src/App.tsx | 2 ++ src/components/Layout.tsx | 4 ++- src/pages/ShopPage.tsx | 62 +++++++++++++++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 68 insertions(+), 1 deletion(-) create mode 100644 src/pages/ShopPage.tsx diff --git a/src/App.tsx b/src/App.tsx index 33d15f9..3f99632 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,11 +2,13 @@ import { Routes, Route } from 'react-router-dom'; import Layout from './components/Layout'; import HomePage from './pages/HomePage'; +import ShopPage from "@/pages/ShopPage"; export default function App() { return ( }> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index f769cdc..5d9e1b3 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -34,7 +34,9 @@ export default function Layout() { { "name": "Contact", "href": "#contact" - } + }, + { name: "Shop", href: "/shop" }, + ]; return ( diff --git a/src/pages/ShopPage.tsx b/src/pages/ShopPage.tsx new file mode 100644 index 0000000..0620d30 --- /dev/null +++ b/src/pages/ShopPage.tsx @@ -0,0 +1,62 @@ +import React from "react"; +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function ShopPage() { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Get Started", href: "/contact" }} + /> + +
+
+
+

+ Our Collection +

+

+ Browse our curated selection of premium items directly from our catalog. +

+
+ +
+