From 050a32dc45f75b8975b848612c26725f3278b369 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 22:26:56 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++++-------------------------------------- 1 file changed, 9 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9df65f8..127a56d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,21 @@ import type { Metadata } from "next"; -import { Figtree } from "next/font/google"; +import { Inter } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -const figtree = Figtree({ - variable: "--font-figtree", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "DAO Climatisation - Installation et Réparation de Clim à Tournan-en-Brie", - description: "DAO Climatisation: Installation, maintenance et réparation de climatisation à Tournan-en-Brie. Devis gratuit. Intervention rapide. 01 64 51 29 92", - keywords: "climatisation Tournan-en-Brie, installation clim, réparation climatisation, dépannage clim 77, entretien climatisation, chauffage climatisation", - metadataBase: new URL("https://www.dao-climatisation.fr"), - alternates: { - canonical: "https://www.dao-climatisation.fr", - }, - openGraph: { - title: "DAO Climatisation - Experts Climatisation Tournan-en-Brie", - description: "Installation, maintenance et réparation de climatisation professionnelle. Devis gratuit et interventions rapides.", - url: "https://www.dao-climatisation.fr", - siteName: "DAO Climatisation", - type: "website", - images: [ - { - url: "https://www.dao-climatisation.fr/og-image.jpg", - alt: "DAO Climatisation - Services climatisation", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "DAO Climatisation - Installation Climatisation", - description: "Experts en climatisation à Tournan-en-Brie. Installation, maintenance, réparation. Devis gratuit.", - images: ["https://www.dao-climatisation.fr/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "DAO Climatisation - Experts en Climatisation à Tournan-en-Brie", description: "Installation, maintenance et réparation de climatisation à Tournan-en-Brie. Devis gratuit et intervention rapide."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - {children} - + + {children}