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