Update src/app/blog/page.tsx

This commit is contained in:
2026-01-22 16:56:39 +00:00
parent 726b4e7da7
commit 1720f4bfe4

View File

@@ -6,6 +6,7 @@ import BlogCardThree from '@/components/sections/blog/BlogCardThree';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import Link from "next/link";
type BlogPost = {
id: string;
@@ -88,7 +89,7 @@ export default function BlogPage() {
borderRadius="pill"
contentWidth="compact"
sizing="medium"
background="aurora"
background="circleGradient"
cardStyle="glass-depth"
primaryButtonStyle="double-inset"
secondaryButtonStyle="glass"
@@ -96,17 +97,18 @@ export default function BlogPage() {
>
<ReactLenis root>
<div className="min-h-screen bg-background">
<NavbarLayoutFloatingOverlay
brandName="Corido Madrid"
navItems={[
{ name: "Home", id: "home" },
{ name: "Rooms", id: "rooms" },
{ name: "Services", id: "services" },
{ name: "Location", id: "location" },
{ name: "About", id: "about" }
]}
button={{ text: "Book Now", href: "pricing" }}
/>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Corido Madrid"
navItems={[
{ name: "Home", id: "/" },
{ name: "Rooms", id: "/rooms" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" }
]}
button={{ text: "Book Now", href: "/booking" }}
/>
</div>
{isLoading ? (
<div className="w-content-width mx-auto py-20 text-center">
@@ -130,18 +132,18 @@ export default function BlogPage() {
columns={[
{
title: "Hotel", items: [
{ label: "Rooms & Suites", href: "rooms" },
{ label: "Amenities", href: "services" },
{ label: "Dining", href: "services" },
{ label: "Spa & Wellness", href: "services" }
{ label: "Rooms & Suites", href: "/rooms" },
{ label: "Amenities", href: "/services" },
{ label: "Dining", href: "/services" },
{ label: "Spa & Wellness", href: "/services" }
]
},
{
title: "Explore", items: [
{ label: "About Us", href: "about" },
{ label: "Location", href: "location" },
{ label: "Guest Reviews", href: "testimonials" },
{ label: "Book Direct", href: "pricing" }
{ label: "About Us", href: "/about" },
{ label: "Location", href: "/location" },
{ label: "Guest Reviews", href: "/" },
{ label: "Book Direct", href: "/booking" }
]
},
{