From fcc55aa0271f5242d97ef5e60f044bf282eb994b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 18:48:11 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5776a41..5a33faf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Roboto } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Roboto } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const roboto = Roboto({ variable: "--font-roboto", @@ -20,6 +24,39 @@ const roboto = Roboto({ weight: ["100", "300", "400", "500", "700", "900"] }); +export const metadata: Metadata = { + title: "Mon Web Pyrénées - Site Web Professionnel 48h", + description: "Créez votre site vitrine professionnel en 48h. Hébergement, domaine et support inclus. Contactez l'agence web des Pyrénées.", + keywords: "site web professionnel, création site Pyrénées, agence web, site vitrine, hébergement inclus", + metadataBase: new URL("https://monwebpyrenees.fr"), + alternates: { + canonical: "https://monwebpyrenees.fr", + }, + openGraph: { + siteName: "Mon Web Pyrénées", + title: "Mon Web Pyrénées - Votre vitrine sur internet", + description: "Création de sites web professionnels pour les commerces et entreprises des Pyrénées", + url: "https://monwebpyrenees.fr", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/beautiful-shot-grassy-field-with-yellow-green-trees-hill-with-mountain-blue-sky_181624-4186.jpg", + alt: "Mon Web Pyrénées - Site professionnel", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Mon Web Pyrénées", + description: "Votre vitrine sur internet", + images: ["http://img.b2bpic.net/free-photo/beautiful-shot-grassy-field-with-yellow-green-trees-hill-with-mountain-blue-sky_181624-4186.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}