Update src/app/shop/page.tsx

This commit is contained in:
2026-02-20 13:12:15 +00:00
parent f8e57445e6
commit 154ae114ca

View File

@@ -61,13 +61,13 @@ export default function ShopPage() {
brandName="Star Wars Fan Club"
navItems={[
{ name: 'Home', id: '/' },
{ name: 'About', id: '#about' },
{ name: 'Features', id: '#features' },
{ name: 'Showcase', id: '#product' },
{ name: 'About', id: '/#about' },
{ name: 'Features', id: '/#features' },
{ name: 'Showcase', id: '/#product' },
{ name: 'News', id: '/blog' },
{ name: 'Shop', id: '/shop' },
{ name: 'Team', id: '#team' },
{ name: 'Contact', id: '#contact' }
{ name: 'Team', id: '/#team' },
{ name: 'Contact', id: '/#contact' }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -99,13 +99,13 @@ export default function ShopPage() {
brandName="Star Wars Fan Club"
navItems={[
{ name: 'Home', id: '/' },
{ name: 'About', id: '#about' },
{ name: 'Features', id: '#features' },
{ name: 'Showcase', id: '#product' },
{ name: 'About', id: '/#about' },
{ name: 'Features', id: '/#features' },
{ name: 'Showcase', id: '/#product' },
{ name: 'News', id: '/blog' },
{ name: 'Shop', id: '/shop' },
{ name: 'Team', id: '#team' },
{ name: 'Contact', id: '#contact' }
{ name: 'Team', id: '/#team' },
{ name: 'Contact', id: '/#contact' }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>