From 11e84eff2d6f4a1ddc7151a67eeb730dd2aa1b04 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 07:17:09 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..0ae43cd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_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 { Open_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 openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Agence Créative - Transformation Digitale Complète", + description: "Agence de contenu numérique spécialisée en développement web, création SaaS, design systems, branding et gestion réseaux sociaux pour startups et PME.", + keywords: "agence web, développement web, SaaS, design graphique, branding, réseaux sociaux, transformation digitale, France", + metadataBase: new URL("https://agence-creative.fr"), + alternates: { + canonical: "https://agence-creative.fr", + }, + openGraph: { + title: "Agence Créative - Transformation Digitale", + description: "Transformez votre présence numérique avec notre agence spécialisée en web, SaaS et design", + url: "https://agence-creative.fr", + siteName: "Agence Créative", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Asf9IDey1Bv2jfPFQDmSdMO5RM/a-modern-clean-web-development-showcase--1773386151194-ccbca030.png", + alt: "Agence Créative - Services Digitaux", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Agence Créative - Transformation Digitale", + description: "Solutions web, SaaS et design pour votre succès digital", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Asf9IDey1Bv2jfPFQDmSdMO5RM/a-modern-clean-web-development-showcase--1773386151194-ccbca030.png", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}