From 7a4e582a4c337a497737848c0a536caaae015fe8 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 01:25:42 +0000 Subject: [PATCH] Switch to version 1: modified src/app/layout.tsx --- src/app/layout.tsx | 48 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 41 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5275938..9b5c213 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,53 @@ import type { Metadata } from "next"; +import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import "@/styles/globals.css"; +import { Manrope } from "next/font/google"; +import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; -const inter = Inter({ subsets: ["latin"] }); +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"], +}); export const metadata: Metadata = { - 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."}; + 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"], + }, +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + + {children} +