diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 9b11893..39d5540 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -41,6 +41,23 @@ export default function ShopPage() { await checkout(getCheckoutItems(), { successUrl: currentUrl.toString() }); }, [cartItems, checkout, getCheckoutItems]); + const navItems = [ + { 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' } + ]; + + const footerColumns = [ + { 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: '#' }] } + ]; + if (isLoading) { return ( setCartOpen(true) }} /> @@ -97,16 +105,7 @@ export default function ShopPage() { @@ -138,11 +137,7 @@ export default function ShopPage() {