From c41c267caac0c07d0b622a67ce6e8c0c3f0c0156 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 18:53:42 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 64 +++++++++++----------------------------------- 1 file changed, 15 insertions(+), 49 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8214912..c110ca3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,61 +1,28 @@ import type { Metadata } from "next"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Los Tordos Rugby Club - Mendoza | Rugby & Hockey", - description: "Club de rugby y hockey en Mendoza con 70 años de tradición. Programas para jóvenes y adultos, salón de eventos, cantina renovada. ¡Únete a nuestra comunidad!", - keywords: "club de rugby Mendoza, club de hockey Maipú, rugby Argentina, hockey Mendoza, eventos Maipú, salón de eventos Mendoza", - metadataBase: new URL("https://lostordos.com.ar"), - alternates: { - canonical: "https://lostordos.com.ar", - }, - openGraph: { - title: "Los Tordos Rugby Club - Tradición, Deporte y Comunidad", - description: "Únete al mejor club de rugby y hockey de Mendoza. Más de 70 años de tradición, instalaciones de clase mundial y comunidad vibrante.", - siteName: "Los Tordos Rugby Club", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/athletic-girl-trying-catch-rugby-ball_23-2148355430.jpg", - alt: "Los Tordos Rugby Club - Campo de rugby", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Los Tordos Rugby Club - Mendoza", - description: "Club de rugby y hockey con 70 años de tradición. Programas deportivos, instalaciones premium y eventos.", - images: ["http://img.b2bpic.net/free-photo/athletic-girl-trying-catch-rugby-ball_23-2148355430.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Los Tordos Rugby Club", description: "Tradición, Deporte y Comunidad en Mendoza"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +