Update src/app/blog/page.tsx

This commit is contained in:
2026-02-22 21:47:43 +00:00
parent 58bdfac5fa
commit 817f5a8c0c

View File

@@ -28,10 +28,6 @@ export default function BlogPage() {
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Rooms", id: "rooms" },
{ name: "Amenities", id: "amenities" },
{ name: "Gallery", id: "gallery" },
{ name: "Contact", id: "contact" },
]}
brandName="The Grand Hotel"
bottomLeftText="Your Luxurious Escape"
@@ -63,21 +59,21 @@ export default function BlogPage() {
columns={[
{
title: "Explore", items: [
{ label: "Rooms & Suites", href: "#rooms" },
{ label: "Amenities", href: "#features" },
{ label: "Gallery", href: "#hero" },
{ label: "Rooms & Suites", href: "/#rooms" },
{ label: "Amenities", href: "/#features" },
{ label: "Gallery", href: "/#hero" },
],
},
{
title: "Services", items: [
{ label: "Dining", href: "#hero" },
{ label: "Spa", href: "#features" },
{ label: "Dining", href: "/#hero" },
{ label: "Spa", href: "/#features" },
{ label: "Events" },
],
},
{
title: "About", items: [
{ label: "Our Story", href: "#about" },
{ label: "Our Story", href: "/#about" },
{ label: "Careers" },
{ label: "Press" },
],