Update src/app/shop/page.tsx

This commit is contained in:
2026-03-03 11:00:14 +00:00
parent 37b2ede17d
commit 4c4feb0786

View File

@@ -8,10 +8,10 @@ import { Star } from 'lucide-react';
export default function ShopPage() {
const navItems = [
{ name: "Shop", id: "shop" },
{ name: "Collections", id: "collections" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "/shop" },
{ name: "Collections", id: "/collections" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Cart", id: "https://example.com/cart" },
];
@@ -105,17 +105,17 @@ export default function ShopPage() {
columns={[
{
title: "Shop", items: [
{ label: "All Furniture", href: "shop" },
{ label: "Seating", href: "shop" },
{ label: "Tables", href: "shop" },
{ label: "Storage", href: "shop" },
{ label: "New Arrivals", href: "shop" }
{ label: "All Furniture", href: "/shop" },
{ label: "Seating", href: "/shop" },
{ label: "Tables", href: "/shop" },
{ label: "Storage", href: "/shop" },
{ label: "New Arrivals", href: "/shop" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "about" },
{ label: "Design Philosophy", href: "about" },
{ label: "About Us", href: "/about" },
{ label: "Design Philosophy", href: "/about" },
{ label: "Sustainability", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Press", href: "#" }
@@ -123,7 +123,7 @@ export default function ShopPage() {
},
{
title: "Support", items: [
{ label: "Contact Us", href: "contact" },
{ label: "Contact Us", href: "/contact" },
{ label: "Shipping Info", href: "#" },
{ label: "Returns", href: "#" },
{ label: "Care Guide", href: "#" },