From c9567a0cea698eca3bb35d0d5faf35c91b923160 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 17:28:52 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 56 ++++++++++------------------------------------ 1 file changed, 12 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a5095ca..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,28 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Madeira Lounge | Restaurante Mediterranean en Carcaixent, Valencia", description: "Restaurante premium en Carcaixent con cocina mediterránea, cócteles artesanales y terraza acogedora. Reserva tu mesa ahora. 697 67 08 89", keywords: "restaurante Carcaixent, restaurante Valencia, comida mediterránea, cócteles, reservas online, terraza", metadataBase: new URL("https://madeiralounge.es"), - alternates: { - canonical: "https://madeiralounge.es" - }, - openGraph: { - title: "Madeira Lounge | Sabores Mediterráneos en Carcaixent", description: "Experimenta cocina de calidad, cócteles únicos y ambiente cuidado en nuestra terraza. ¡Reserva tu mesa hoy!", url: "https://madeiralounge.es", siteName: "Madeira Lounge", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/beach-restaurant-evening_661209-253.jpg", alt: "Madeira Lounge - Terrace dining experience" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Madeira Lounge | Restaurante en Carcaixent", description: "Reserva tu experiencia mediterránea única. Cócteles artesanales, terraza y cocina fresca.", images: ["http://img.b2bpic.net/free-photo/beach-restaurant-evening_661209-253.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +