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 +}