diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6e8a679..84fc722 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Geist, Geist_Mono } from "next/font/google"; +import "@/styles/globals.css"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Pastelería MOYANO | Bollería Artesanal en Alcorcón", description: "Pastelería MOYANO: palmeras, croissants y bollería recién hecha en Alcorcón. Café de calidad, trato cercano y recetas artesanales desde hace años.", keywords: "pastelería, alcorcón, bollería, palmeras, croissants, bakery, café, artesanal", metadataBase: new URL("https://pasteleriamoyano.com"), - alternates: { - canonical: "https://pasteleriamoyano.com" - }, - openGraph: { - title: "Pastelería MOYANO | Tradición Artesanal", description: "Descubre nuestra bollería recién hecha, café de calidad y el trato cercano de siempre en el corazón de Alcorcón.", url: "https://pasteleriamoyano.com", siteName: "Pastelería MOYANO", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/palmier-puff-pastry-plate-wooden-table_123827-19899.jpg", alt: "Palmeras artesanales de Pastelería MOYANO" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Pastelería MOYANO | Bollería Artesanal Alcorcón", description: "Palmeras, croissants y especialidades recién horneadas. Servicio a domicilio y encargos especiales.", images: ["http://img.b2bpic.net/free-photo/palmier-puff-pastry-plate-wooden-table_123827-19899.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Pastelería MOYANO", description: "Bollería artesanal recién hecha en Alcorcón, Madrid"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +