Update src/app/layout.tsx

This commit is contained in:
2026-03-06 14:46:39 +00:00
parent f659f4ca8d
commit 004872b32b

View File

@@ -1,4 +1,9 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Cerramientos Walter", description: "Especialistas en ventanas de aluminio, cerramientos, rejas y soluciones a medida"};
@@ -10,7 +15,7 @@ export default function RootLayout({
}) {
return (
<html lang="es">
<body>
<body className={inter.variable}>
{children}
<script