Update src/app/blog/page.tsx
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user