Update src/app/blog/page.tsx

This commit is contained in:
2026-01-29 18:49:46 +00:00
parent f27da61c5e
commit 29301b3fa6

View File

@@ -7,6 +7,7 @@ import FooterBase from '@/components/sections/footer/FooterBase';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import type { FooterColumn } from "@/components/shared/FooterColumns";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
import Link from "next/link";
type BlogPost = {
id: string;
@@ -97,12 +98,20 @@ export default function BlogPage() {
>
<ReactLenis root>
<div className="min-h-screen bg-background">
<NavbarStyleMinimal
brandName="Serenity Hotel"
button={{
text: "Book Now", href: "#booking"
}}
/>
<div id="nav" data-section="nav">
<NavbarStyleMinimal
brandName="Serenity Hotel"
button={{
text: "Book Now", href: "/booking"
}}
/>
<div className="hidden">
<Link href="/">Home</Link>
<Link href="/about">About</Link>
<Link href="/contact">Contact</Link>
<Link href="/blog">Blog</Link>
</div>
</div>
{isLoading ? (
<div className="w-content-width mx-auto py-20 text-center">
@@ -126,18 +135,18 @@ export default function BlogPage() {
columns={[
{
title: "Hotel", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Rooms", href: "#rooms" },
{ label: "Amenities", href: "#amenities" },
{ label: "Events & Meetings", href: "#events" }
{ label: "About Us", href: "/about" },
{ label: "Our Rooms", href: "/rooms" },
{ label: "Amenities", href: "/amenities" },
{ label: "Events & Meetings", href: "/events" }
]
},
{
title: "Guest Services", items: [
{ label: "Booking Policies", href: "#policies" },
{ label: "Cancellation", href: "#cancellation" },
{ label: "Contact Concierge", href: "#contact" },
{ label: "Group Bookings", href: "#groups" }
{ label: "Booking Policies", href: "/policies" },
{ label: "Cancellation", href: "/cancellation" },
{ label: "Contact Concierge", href: "/contact" },
{ label: "Group Bookings", href: "/groups" }
]
},
{
@@ -145,7 +154,7 @@ export default function BlogPage() {
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Twitter", href: "https://twitter.com" },
{ label: "Newsletter", href: "#newsletter" }
{ label: "Newsletter", href: "/newsletter" }
]
}
]}