diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d6603e9..16303bf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,29 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/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 figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Deportivo Cañón de la Sierra | Club Deportivo Monterrey", description: "Club deportivo en Monterrey con albercas, canchas, fitness y actividades familiares. Únete a nuestra comunidad de deporte y naturaleza.", keywords: "deportivo Monterrey, club deportivo, albercas Monterrey, canchas de tenis, fitness Monterrey", openGraph: { - title: "Deportivo Cañón de la Sierra", description: "Deporte, Naturaleza y Convivencia Familiar en Monterrey", siteName: "Cañón de la Sierra", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/sports-girl_1157-8974.jpg", alt: "Deportivo Cañón de la Sierra" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Deportivo Cañón de la Sierra", description: "Club deportivo familiar con naturaleza, albercas y canchas profesionales", images: ["http://img.b2bpic.net/free-photo/sports-girl_1157-8974.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Deportivo Cañón de la Sierra | Club Deportivo Monterrey", description: "Club deportivo en Monterrey con albercas, canchas deportivas, gimnasio y actividades familiares. Ubicado en Carretera Nacional km 265. ¡Únete a nuestra comunidad hoy!", keywords: "club deportivo Monterrey, albercas Monterrey, canchas deportivas Monterrey, club familiar Monterrey, deportivo carretera nacional Monterrey"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - + + + {children} - -