diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b57efb1..b0527ff 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,17 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "Herrería NAM - Herrería Profesional en Córdoba", description: "Rejas, portones, estructuras metálicas y trabajos de herrería a medida. Expertos en soldadura y reparaciones con garantía."}; + title: "Herrería NAM - Profesionales en Córdoba", description: "Servicios de herrería profesional en Córdoba. Rejas, portones, estructuras metálicas y soldadura con garantía."}; export default function RootLayout({ children, @@ -14,7 +20,9 @@ export default function RootLayout({ }) { return ( -
{children} + + {children} +