Update src/app/shop/page.tsx

This commit is contained in:
2026-02-27 05:02:30 +00:00
parent 6543c5ee5b
commit b6cd5d1b75

View File

@@ -25,7 +25,7 @@ function ShopPageContent() {
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLarge"
background="none"
background="floatingGradient"
cardStyle="glass-elevated"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
@@ -40,8 +40,7 @@ function ShopPageContent() {
{ name: "Menu", id: "product" },
{ name: "About", id: "about" },
{ name: "Features", id: "feature" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" }
{ name: "Contact", id: "contact" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/>
@@ -93,7 +92,7 @@ function ShopPageContent() {
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLarge"
background="none"
background="floatingGradient"
cardStyle="glass-elevated"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
@@ -108,8 +107,7 @@ function ShopPageContent() {
{ name: "Menu", id: "product" },
{ name: "About", id: "about" },
{ name: "Features", id: "feature" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" }
{ name: "Contact", id: "contact" }
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/>
@@ -168,4 +166,4 @@ export default function ShopPage() {
<ShopPageContent />
</Suspense>
);
}
}