Update src/app/blog/page.tsx
This commit is contained in:
@@ -6,6 +6,7 @@ import BlogCardThree from '@/components/sections/blog/BlogCardThree';
|
|||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
|
import Link from "next/link";
|
||||||
|
|
||||||
type BlogPost = {
|
type BlogPost = {
|
||||||
id: string;
|
id: string;
|
||||||
@@ -88,7 +89,7 @@ export default function BlogPage() {
|
|||||||
borderRadius="pill"
|
borderRadius="pill"
|
||||||
contentWidth="compact"
|
contentWidth="compact"
|
||||||
sizing="medium"
|
sizing="medium"
|
||||||
background="aurora"
|
background="circleGradient"
|
||||||
cardStyle="glass-depth"
|
cardStyle="glass-depth"
|
||||||
primaryButtonStyle="double-inset"
|
primaryButtonStyle="double-inset"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
@@ -96,17 +97,18 @@ export default function BlogPage() {
|
|||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div className="min-h-screen bg-background">
|
<div className="min-h-screen bg-background">
|
||||||
<NavbarLayoutFloatingOverlay
|
<div id="nav" data-section="nav">
|
||||||
brandName="Corido Madrid"
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
brandName="Corido Madrid"
|
||||||
{ name: "Home", id: "home" },
|
navItems={[
|
||||||
{ name: "Rooms", id: "rooms" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Rooms", id: "/rooms" },
|
||||||
{ name: "Location", id: "location" },
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "About", id: "about" }
|
{ name: "About", id: "/about" }
|
||||||
]}
|
]}
|
||||||
button={{ text: "Book Now", href: "pricing" }}
|
button={{ text: "Book Now", href: "/booking" }}
|
||||||
/>
|
/>
|
||||||
|
</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">
|
||||||
@@ -130,18 +132,18 @@ export default function BlogPage() {
|
|||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Hotel", items: [
|
title: "Hotel", items: [
|
||||||
{ label: "Rooms & Suites", href: "rooms" },
|
{ label: "Rooms & Suites", href: "/rooms" },
|
||||||
{ label: "Amenities", href: "services" },
|
{ label: "Amenities", href: "/services" },
|
||||||
{ label: "Dining", href: "services" },
|
{ label: "Dining", href: "/services" },
|
||||||
{ label: "Spa & Wellness", href: "services" }
|
{ label: "Spa & Wellness", href: "/services" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Explore", items: [
|
title: "Explore", items: [
|
||||||
{ label: "About Us", href: "about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Location", href: "location" },
|
{ label: "Location", href: "/location" },
|
||||||
{ label: "Guest Reviews", href: "testimonials" },
|
{ label: "Guest Reviews", href: "/" },
|
||||||
{ label: "Book Direct", href: "pricing" }
|
{ label: "Book Direct", href: "/booking" }
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user