diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 5b34486..294a03b 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -28,13 +28,12 @@ export default function BlogPage() { @@ -61,15 +60,15 @@ export default function BlogPage() { 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" }, ], }, diff --git a/src/app/page.tsx b/src/app/page.tsx index 06e8d2e..077deff 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,7 +28,7 @@ export default function SitePage() { >
@@ -126,7 +127,7 @@ export default function SitePage() {
diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 6349388..9971375 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -75,7 +75,7 @@ function ProductPageContent({ params }: ProductPageProps) { }, [cartItems, checkout, getCheckoutItems]); const navbar = ( -