diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3f6b804..81688d9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); export const metadata: Metadata = { - title: "Agroreolid | Tienda Agrícola en Hellín - Fertilizantes, Piensos y Herramientas", description: "Agroreolid es tu tienda agrícola de confianza en Hellín desde 1994. Venta de fertilizantes, piensos para animales, productos fitosanitarios y herramientas con asesoramiento profesional.", keywords: "tienda agrícola Hellín, fertilizantes Hellín, piensos para animales, productos agrícolas Albacete, agricultura, ganadería, jardinería", metadataBase: new URL("https://www.agroreolid.es"), - alternates: { - canonical: "https://www.agroreolid.es"}, - openGraph: { - title: "Agroreolid | Tu Tienda Agrícola de Confianza desde 1994", description: "Más de 30 años ofreciendo los mejores productos agrícolas, piensos y herramientas con asesoramiento profesional en Hellín.", url: "https://www.agroreolid.es", siteName: "Agroreolid", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-beautiful-woman-with-blond-long-hair-white-dress-straw-hat-collects-flowers-wheat-field-flying-hair-sun-summer-time-dreamers-golden-sunset_1321-2212.jpg", alt: "Tienda Agrícola Agroreolid Hellín"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Agroreolid - Tienda Agrícola Profesional", description: "Fertilizantes, piensos, herramientas y asesoramiento agrícola en Hellín.", images: ["http://img.b2bpic.net/free-photo/young-beautiful-woman-with-blond-long-hair-white-dress-straw-hat-collects-flowers-wheat-field-flying-hair-sun-summer-time-dreamers-golden-sunset_1321-2212.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Agroreolid - Tienda Agrícola en Hellín", description: "Tienda agrícola de confianza en Hellín desde 1994. Productos agrícolas, piensos, fertilizantes y asesoramiento profesional."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +