import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Archivo } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); export const metadata: Metadata = { title: "Plombier Grenoble - Millésime Plomberie | 4.8★ Devis Gratuit", description: "Plombier à Grenoble et Saint-Martin-d'Hères. Dépannage rapide, rénovation salle de bain, installations. 06 27 86 59 31. Devis gratuit. 4.8/5 avis.", keywords: "plombier Grenoble, plombier Saint-Martin-d'Hères, dépannage plomberie Grenoble, rénovation salle de bain, plombier urgence, Millésime", metadataBase: new URL("https://millésime-plomberie.fr"), alternates: { canonical: "https://millésime-plomberie.fr", }, openGraph: { title: "Plombier Grenoble - Millésime Plomberie", description: "Dépannage plomberie, rénovation salle de bain, installations. Devis gratuit. 4.8★ 22 avis.", url: "https://millésime-plomberie.fr", siteName: "Millésime Plomberie", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990697.jpg", alt: "Plombier professionnel Grenoble", }, ], }, twitter: { card: "summary_large_image", title: "Plombier Grenoble - Millésime Plomberie", description: "Plombier fiable à Grenoble. Interventions rapides, devis gratuit. 06 27 86 59 31", images: ["http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990697.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}