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

This commit is contained in:
2026-02-20 21:22:58 +00:00
parent b46cf60164
commit 7a2a2cb804

View File

@@ -75,7 +75,7 @@ function ProductPageContent({ params }: ProductPageProps) {
}, [cartItems, checkout, getCheckoutItems]); }, [cartItems, checkout, getCheckoutItems]);
const navbar = ( const navbar = (
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
@@ -93,15 +93,15 @@ function ProductPageContent({ params }: ProductPageProps) {
columns={[ columns={[
{ {
title: "Hotel", items: [ title: "Hotel", items: [
{ label: "About Us", href: "#about" }, { label: "About Us", href: "/#about" },
{ label: "Rooms", href: "#rooms" }, { label: "Rooms", href: "/#products" },
{ label: "Amenities", href: "#amenities" }, { label: "Amenities", href: "/#features" },
], ],
}, },
{ {
title: "Guest Services", items: [ title: "Guest Services", items: [
{ label: "FAQ", href: "#faq" }, { label: "FAQ", href: "/#faq" },
{ label: "Contact Us", href: "#contact" }, { label: "Contact Us", href: "/#contact" },
{ label: "Privacy Policy", href: "/privacy" }, { label: "Privacy Policy", href: "/privacy" },
], ],
}, },