diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index d5bb22e..3bd2392 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -38,8 +38,11 @@ export default function ShopPage() { setCartOpen(true) }} /> @@ -53,16 +56,16 @@ export default function ShopPage() { 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: "#" } ] }, @@ -101,8 +104,11 @@ export default function ShopPage() { setCartOpen(true) }} /> @@ -124,16 +130,16 @@ export default function ShopPage() { 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: "#" } ] }, @@ -152,4 +158,4 @@ export default function ShopPage() { ); -} \ No newline at end of file +}