Update src/app/shop/[id]/page.tsx

This commit is contained in:
2026-02-14 12:24:58 +00:00
parent d8728751f1
commit e45295befa

View File

@@ -85,8 +85,11 @@ export default function ProductPage({ params }: ProductPageProps) {
<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) }}
/>
@@ -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) {
<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) }}
/>
@@ -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) {
<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) }}
/>
@@ -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) {
</ReactLenis>
</ThemeProvider>
);
}
}