From 29301b3fa6e2dc6612e53cdb75098e79b82ada2c Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 18:49:46 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 39 ++++++++++++++++++++++++--------------- 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 6c5b938..02b0706 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -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() { >
- + {isLoading ? (
@@ -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" } ] } ]}