diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1444f73..b57efb1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Herrería NAM Córdoba | Rejas, Portones y Herrería Profesional", description: "Herrería profesional en Córdoba. Rejas, portones, puertas de seguridad y estructuras metálicas. 4.9⭐ en Google. Presupuestos sin compromiso.", keywords: "herrería Córdoba, herrero Córdoba, rejas para casas Córdoba, portones metálicos Córdoba, puertas de seguridad, estructuras metálicas, soldadura Córdoba", metadataBase: new URL("https://herrerianam.com.ar"), - alternates: { - canonical: "https://herrerianam.com.ar"}, - openGraph: { - title: "Herrería NAM Córdoba | Servicios de Herrería Profesional", description: "Expertos en rejas, portones y estructuras metálicas. 4.9⭐ en Google. Contáctanos para tu presupuesto.", url: "https://herrerianam.com.ar", siteName: "Herrería NAM", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/process-polishing-welding-metal-factory_651396-4.jpg", alt: "Herrería NAM - Servicios profesionales de herrería"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Herrería NAM Córdoba", description: "Rejas, portones y herrería profesional en Córdoba. 4.9⭐ en Google.", images: ["http://img.b2bpic.net/free-photo/process-polishing-welding-metal-factory_651396-4.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + 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."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}