Update src/app/layout.tsx

This commit is contained in:
2026-06-03 15:16:21 +00:00
parent 1669ad3b78
commit 9b866e4f47

View File

@@ -1,5 +1,5 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
@@ -7,20 +7,18 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville", subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: 'Boutique B&B Dénia: Lujo Afromediterráneo y Calma Serena',
description: 'Descubre nuestro Bed & Breakfast boutique adults only en Dénia. Lujo afromediterráneo, diseño artesanal, desayuno orgánico y una experiencia de calma y desconexión.',
description: 'Descubre nuestro Bed & Breakfast boutique adults only en Dénia. Lujo afromediterránea, diseño artesanal, desayuno orgánico y una experiencia de calma y desconexión.',
};
export default function RootLayout({
@@ -32,7 +30,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
@@ -45,4 +43,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}