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