Update src/app/blog/page.tsx

This commit is contained in:
2026-02-20 21:22:56 +00:00
parent afcea0990c
commit 091f4b9103

View File

@@ -28,13 +28,12 @@ export default function BlogPage() {
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Rooms", id: "rooms" }, { name: "Rooms", id: "/#products" },
{ name: "Amenities", id: "amenities" }, { name: "Amenities", id: "/#features" },
{ name: "Gallery", id: "gallery" }, { name: "Contact", id: "/#contact" },
{ name: "Contact", id: "contact" },
]} ]}
brandName="Grand Stay" brandName="Grand Stay"
button={{ text: "Book Now", href: "#contact" }} button={{ text: "Book Now", href: "/#contact" }}
/> />
</div> </div>
@@ -61,15 +60,15 @@ export default function BlogPage() {
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" },
], ],
}, },