Update src/app/shop/page.tsx

This commit is contained in:
2026-02-14 12:24:59 +00:00
parent e45295befa
commit 3ba3fec6aa

View File

@@ -38,8 +38,11 @@ export default function ShopPage() {
<NavbarStyleCentered
brandName="Lumina Hotel"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "Rooms", id: "#rooms" },
{ name: "Amenities", id: "#amenities" },
{ name: "About", id: "/about" },
{ name: "Reviews", id: "#reviews" },
{ name: "Pricing", id: "#pricing" }
]}
button={{ text: "Cart", onClick: () => 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() {
<NavbarStyleCentered
brandName="Lumina Hotel"
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "Rooms", id: "#rooms" },
{ name: "Amenities", id: "#amenities" },
{ name: "About", id: "/about" },
{ name: "Reviews", id: "#reviews" },
{ name: "Pricing", id: "#pricing" }
]}
button={{ text: "Cart", onClick: () => 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() {
</ReactLenis>
</ThemeProvider>
);
}
}