|
|
|
|
@@ -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 (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<body className={`${figtree.variable} antialiased`}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="fr">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1419,4 +1385,4 @@ export default function RootLayout({
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|