Update src/app/shop/page.tsx

This commit is contained in:
2026-02-19 15:27:58 +00:00
parent 93e681e046
commit 7b299b09ee

View File

@@ -39,8 +39,10 @@ export default function ShopPage() {
<NavbarStyleApple
brandName="Brew Haven"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "products" },
{ name: "Process", id: "features" },
{ name: "Reviews", id: "testimonial" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -83,8 +85,10 @@ export default function ShopPage() {
<NavbarStyleApple
brandName="Brew Haven"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "products" },
{ name: "Process", id: "features" },
{ name: "Reviews", id: "testimonial" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -115,4 +119,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}