diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0258481..df370cd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Asador Palacio del Pollo | Pollo Asado Premium", description: "Pollo asado jugoso, tortillas legendarias y comida casera tradicional lista para llevar. Más de 400 reseñas de 5 estrellas. Pide ahora.", keywords: "pollo asado, rotisserie chicken, comida para llevar, Spanish food, takeaway, Madrid, Barcelona", openGraph: { - title: "Asador Palacio del Pollo - El Mejor Pollo Asado", description: "Auténtica gastronomía española: pollo asado jugoso, tortillas de patatas legendarias y comida casera lista para llevar.", type: "website", siteName: "Asador Palacio del Pollo", images: [ - { - url: "http://img.b2bpic.net/free-photo/top-view-hands-holding-pie-slices_23-2149598947.jpg", alt: "Pollo asado premium"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Asador Palacio del Pollo", description: "Pollo asado jugoso y auténtico, listo para llevar. Pide ahora.", images: ["http://img.b2bpic.net/free-photo/top-view-hands-holding-pie-slices_23-2149598947.jpg"], - }, -}; + title: "Asador Palacio del Pollo", description: "El arte del pollo asado perfecto. Comida casera preparada cada día."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -