diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 46ae284..f96311b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,47 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +import "@/styles/globals.css"; export const metadata: Metadata = { - title: "Ferretería El Nico | Materiales Construcción La Florida", description: "Ferretería local en La Florida con 160+ clientes satisfechos. Materiales, herramientas y asesoría profesional. Entrega a domicilio. Llámanos: +56 9 5094 9975", keywords: "ferretería La Florida, materiales construcción, herramientas, despacho local, asesoría construcción", openGraph: { - title: "Ferretería El Nico | Tu Socio en Construcción Local", description: "Más de 160 clientes satisfechos. Materiales de calidad, atención personalizada y entrega rápida.", type: "website", siteName: "Ferretería El Nico"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Ferretería El Nico - Materiales de Construcción en La Florida", description: "Ferretería El Nico: 160+ clientes satisfechos. Venta de materiales, entrega rápida y asesoría experta en construcción. La Florida, RM."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}