diff --git a/src/app/layout.tsx b/src/app/layout.tsx index feb703a..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Maderería Los 3 Garcia - Madera de Calidad en Puebla", description: "Compra madera de construcción y carpintería en Puebla. 20+ años de experiencia, precios competitivos y entrega rápida. Llama ahora: 222 409 4580", keywords: "maderería Puebla, venta de madera, madera construcción, madera carpintería, triplay Puebla, precios madera", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Maderería Los 3 Garcia - Tu Proveedor de Confianza", description: "Madera de calidad, buen precio y entrega rápida en Puebla", type: "website", siteName: "Maderería Los 3 Garcia", images: [ - { - url: "http://img.b2bpic.net/free-photo/carpentry-concept_23-2147773771.jpg", alt: "Maderería Los 3 Garcia"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Maderería Los 3 Garcia", description: "Madera de calidad en Puebla - Construcción y Carpintería", images: ["http://img.b2bpic.net/free-photo/carpentry-concept_23-2147773771.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -