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
navItems={[
{ name: "Home", id: "/" },
{ name: "Rooms", id: "rooms" },
{ name: "Amenities", id: "amenities" },
{ name: "Gallery", id: "gallery" },
{ name: "Contact", id: "contact" },
{ name: "Rooms", id: "/#products" },
{ name: "Amenities", id: "/#features" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Grand Stay"
button={{ text: "Book Now", href: "#contact" }}
button={{ text: "Book Now", href: "/#contact" }}
/>
</div>
@@ -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" },
],
},