From af7d3c00ab66a5777e92ac487f41b4e4b3a50416 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 01:25:35 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b5c213..5275938 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Goicoechea Resucita - Movimiento Político Cantonal", description: "Un movimiento ciudadano comprometido con la solidaridad, justicia social y oportunidades para todas las familias de Goicoechea.", keywords: "Goicoechea, movimiento político, solidaridad, comunidad, elecciones 2028, democracia, justicia social", metadataBase: new URL("https://goicoechearesucita.cr"), - alternates: { - canonical: "https://goicoechearesucita.cr"}, - openGraph: { - title: "Goicoechea Resucita - Movimiento Político Cantonal", description: "Un movimiento ciudadano comprometido con la solidaridad, justicia social y oportunidades para todas las familias de Goicoechea.", url: "https://goicoechearesucita.cr", siteName: "Goicoechea Resucita", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/diverse-group-friends-celebrating-meeting_74855-2138.jpg", alt: "Comunidad unida del cantón de Goicoechea"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Goicoechea Resucita - Movimiento Político Cantonal", description: "Un movimiento ciudadano comprometido con la solidaridad, justicia social y oportunidades para todas las familias de Goicoechea.", images: ["http://img.b2bpic.net/free-photo/diverse-group-friends-celebrating-meeting_74855-2138.jpg"], - }, -}; + title: "Goicoechea Resucita - Movimiento Ciudadano", description: "Un movimiento político inspirado en valores cristianos, socialdemócratas y democráticos para servir a la comunidad de Goicoechea."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}