Update src/app/shop/page.tsx

This commit is contained in:
2026-02-20 10:35:32 +00:00
parent 3c107111c9
commit ef07d2d703

View File

@@ -35,11 +35,10 @@ export default function ShopPage() {
<NavbarLayoutFloatingInline
brandName="Brew Haven"
navItems={[
{ name: "Home", id: "/" },
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "products" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" }
{ name: "Contact", id: "contact" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/>
@@ -107,11 +106,10 @@ export default function ShopPage() {
<NavbarLayoutFloatingInline
brandName="Brew Haven"
navItems={[
{ name: "Home", id: "/" },
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Menu", id: "products" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" }
{ name: "Contact", id: "contact" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/>
@@ -167,4 +165,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}