diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8d1439f..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } 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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Soda Ulloa | Comida Casera Costarricense Fresca", description: "Soda Ulloa: auténtica comida casera costarricense. Casados, desayunos típicos, y más. Ambiente acogedor, precios accesibles. ¡Visítanos hoy!", keywords: "Soda Ulloa, comida costarricense, casado, restaurante local, comida casera, Costa Rica, soda tradicional", openGraph: { - title: "Soda Ulloa - Comida Casera Costarricense", description: "Visita Soda Ulloa para disfrutar de auténtica comida casera costarricense fresca y deliciosa.", siteName: "Soda Ulloa", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-friends-sitting-table_23-2149066075.jpg", alt: "Soda Ulloa - Comida Casera"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Soda Ulloa - Comida Casera Costarricense", description: "Auténtica comida costarricense a precios accesibles. ¡Llama y reserva tu mesa hoy!", images: ["http://img.b2bpic.net/free-photo/close-up-friends-sitting-table_23-2149066075.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} - -