Update src/app/shop/page.tsx

This commit is contained in:
2026-02-20 13:09:46 +00:00
parent 91287fe967
commit 1bc55a6b9d

View File

@@ -60,7 +60,14 @@ export default function ShopPage() {
<NavbarStyleApple
brandName="Star Wars Fan Club"
navItems={[
{ name: "Home", id: "/" }
{ name: 'Home', id: '/' },
{ 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' }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -91,7 +98,14 @@ export default function ShopPage() {
<NavbarStyleApple
brandName="Star Wars Fan Club"
navItems={[
{ name: "Home", id: "/" }
{ name: 'Home', id: '/' },
{ 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' }
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -125,8 +139,9 @@ export default function ShopPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Shop", href: "/shop" }, { label: "Blog", href: "/blog" }] },
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
{ items: [{ label: 'About Us', href: '#about' }, { label: 'Features', href: '#features' }, { label: 'News', href: '/blog' }] },
{ items: [{ label: 'Community', href: '#product' }, { label: 'Team', href: '#team' }, { label: 'FAQ', href: '#faq' }] },
{ items: [{ label: 'Contact', href: '#contact' }, { label: 'Privacy Policy', href: '#' }, { label: 'Terms of Service', href: '#' }] }
]}
logoText="Star Wars Fan Club"
containerClassName="bg-background-accent text-foreground"