Update src/app/shop/page.tsx

This commit is contained in:
2026-02-28 07:22:06 +00:00
parent 2c315fc62e
commit f2f9edb973

View File

@@ -37,7 +37,6 @@ function ShopPageContent() {
brandName="Baan Mu"
navItems={[
{"name":"Home","id":"/"},
{"name":"Menu","id":"/menu"},
{"name":"Shop","id":"/shop"}
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
@@ -77,7 +76,6 @@ function ShopPageContent() {
brandName="Baan Mu"
navItems={[
{"name":"Home","id":"/"},
{"name":"Menu","id":"/menu"},
{"name":"Shop","id":"/shop"}
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
@@ -112,4 +110,4 @@ export default function ShopPage() {
<ShopPageContent />
</Suspense>
);
}
}