From ada7e3bf972282f52aef469a3dcbece252474252 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 11:09:36 +0000 Subject: [PATCH] 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 282ff27..0d6bb2e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito_Sans } 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 { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Z&O Dev - Agence Web Moderne & Élégante", + description: "Création de sites web modernes, performants et élégants. Design Apple-inspired, e-commerce, maintenance. Consultez Z&O Dev dès maintenant.", + keywords: "agence web, design web, développement web, site vitrine, e-commerce, web design moderne, responsive design, web performance", + metadataBase: new URL("https://zandodev.fr"), + alternates: { + canonical: "https://zandodev.fr", + }, + openGraph: { + title: "Z&O Dev - Agence Web Moderne", + description: "Solutions web exceptionnelles avec design Apple-inspired et performances optimales.", + url: "https://zandodev.fr", + siteName: "Z&O Dev", + type: "website", + images: [ + { + url: "https://zandodev.fr/og-image.jpg", + alt: "Z&O Dev Agence Web", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Z&O Dev - Agence Web Moderne", + description: "Création de sites web modernes, performants et élégants.", + images: ["https://zandodev.fr/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}