From ffe735c34edd320e49b762160f85b9eb832ae9ca Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 00:39:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2786 -------------------------------------------- 1 file changed, 2786 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8dc7d3b..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2786 +0,0 @@ -import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Restaurante Viva Galicia - Marisquería Gallega en Galapagar", description: "Auténtica marisquería gallega en Galapagar, Madrid. Pulpo a feira, mariscadas y arroz con bogavante con marisco fresco de viveros propios. Reserva tu mesa.", keywords: "restaurante gallego, marisquería Galapagar, pulpo a gallega, mariscada, arroz bogavante, marisco fresco Madrid, restaurante familiar", metadataBase: new URL("https://restaurantevivagalicia.com"), - alternates: { - canonical: "https://restaurantevivagalicia.com"}, - openGraph: { - title: "Restaurante Viva Galicia - Auténtica Cocina Gallega", description: "Marisco fresco con viveros propios. Pulpo a feira, mariscadas y arroz con bogavante. Amplios salones para grupos y celebraciones.", url: "https://restaurantevivagalicia.com", siteName: "Restaurante Viva Galicia", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/tasty-seafood-table-high-angle_23-2149410758.jpg", alt: "Restaurante Viva Galicia - Marisco fresco"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Restaurante Viva Galicia", description: "Auténtica marisquería gallega con marisco fresco. ¡Reserva tu mesa hoy!", images: ["http://img.b2bpic.net/free-photo/tasty-seafood-table-high-angle_23-2149410758.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -