From e45295befa3e9b09fd5bd92563e0d0cbb39effab Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Feb 2026 12:24:58 +0000 Subject: [PATCH] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 41 +++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 16 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 6caa61c..665e2a3 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -85,8 +85,11 @@ export default function ProductPage({ params }: ProductPageProps) { setCartOpen(true) }} /> @@ -100,16 +103,16 @@ export default function ProductPage({ params }: ProductPageProps) { columns={[ { title: "About", items: [ - { label: "Our Story", href: "about" }, + { label: "Our Story", href: "/about" }, { label: "Awards", href: "#" }, { label: "Careers", href: "#" } ] }, { title: "Services", items: [ - { label: "Rooms", href: "rooms" }, + { label: "Rooms", href: "#rooms" }, { label: "Dining", href: "#" }, - { label: "Spa", href: "amenities" }, + { label: "Spa", href: "#amenities" }, { label: "Events", href: "#" } ] }, @@ -149,8 +152,11 @@ export default function ProductPage({ params }: ProductPageProps) { setCartOpen(true) }} /> @@ -172,16 +178,16 @@ export default function ProductPage({ params }: ProductPageProps) { columns={[ { title: "About", items: [ - { label: "Our Story", href: "about" }, + { label: "Our Story", href: "/about" }, { label: "Awards", href: "#" }, { label: "Careers", href: "#" } ] }, { title: "Services", items: [ - { label: "Rooms", href: "rooms" }, + { label: "Rooms", href: "#rooms" }, { label: "Dining", href: "#" }, - { label: "Spa", href: "amenities" }, + { label: "Spa", href: "#amenities" }, { label: "Events", href: "#" } ] }, @@ -220,8 +226,11 @@ export default function ProductPage({ params }: ProductPageProps) { setCartOpen(true) }} /> @@ -268,16 +277,16 @@ export default function ProductPage({ params }: ProductPageProps) { columns={[ { title: "About", items: [ - { label: "Our Story", href: "about" }, + { label: "Our Story", href: "/about" }, { label: "Awards", href: "#" }, { label: "Careers", href: "#" } ] }, { title: "Services", items: [ - { label: "Rooms", href: "rooms" }, + { label: "Rooms", href: "#rooms" }, { label: "Dining", href: "#" }, - { label: "Spa", href: "amenities" }, + { label: "Spa", href: "#amenities" }, { label: "Events", href: "#" } ] }, @@ -296,4 +305,4 @@ export default function ProductPage({ params }: ProductPageProps) { ); -} \ No newline at end of file +}