Update src/app/blog/page.tsx

This commit is contained in:
2026-02-14 12:24:56 +00:00
parent c940cbf0d7
commit 1c9d8deb82

View File

@@ -28,14 +28,13 @@ export default function BlogPage() {
<NavbarStyleCentered
brandName="Lumina Hotel"
navItems={[
{ name: "Home", id: "/" },
{ name: "Rooms", id: "rooms" },
{ name: "Amenities", id: "amenities" },
{ name: "About", id: "about" },
{ name: "Reviews", id: "reviews" },
{ name: "Pricing", id: "pricing" }
{ name: "Rooms", id: "#rooms" },
{ name: "Amenities", id: "#amenities" },
{ name: "About", id: "/about" },
{ name: "Reviews", id: "#reviews" },
{ name: "Pricing", id: "#pricing" }
]}
button={{ text: "Book Now", href: "pricing" }}
button={{ text: "Book Now", href: "#pricing" }}
/>
</div>
@@ -64,16 +63,16 @@ export default function BlogPage() {
columns={[
{
title: "About", items: [
{ label: "Our Story", href: "about" },
{ label: "Our Story", href: "/about" },
{ label: "Awards", href: "#" },
{ label: "Careers", href: "#" }
]
},
{
title: "Services", items: [
{ label: "Rooms", href: "rooms" },
{ label: "Rooms", href: "#rooms" },
{ label: "Dining", href: "#" },
{ label: "Spa", href: "amenities" },
{ label: "Spa", href: "#amenities" },
{ label: "Events", href: "#" }
]
},
@@ -92,4 +91,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}