import type { Metadata } from "next"; import { Inter_Tight } from "next/font/google"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const interTight = Inter_Tight({ variable: "--font-inter-tight", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Assurance Sala Al Jadida | Agence Sanlam Locale", description: "Agence d'assurance locale à Sala Al Jadida. Auto, santé, habitation, professionnelle. Devis gratuit, réponse rapide 24h. Tél: 05 37 53 48 39", keywords: "assurance Sala Al Jadida, assurance Rabat Salé, assurance auto locale, devis assurance gratuit, agence Sanlam", metadataBase: new URL("https://agences.sanlam.ma/sala-al-jadida"), alternates: { canonical: "https://agences.sanlam.ma/sala-al-jadida"}, openGraph: { title: "Assurance Sala Al Jadida | Agence Sanlam", description: "Votre agence d'assurance locale pour tous vos besoins. Réponse rapide, explications simples, accompagnement personnalisé.", url: "https://agences.sanlam.ma/sala-al-jadida", siteName: "Sanlam Sala Al Jadida", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/business-people-walking-outside-office-building_107420-74359.jpg", alt: "Agence Sanlam Sala Al Jadida"}, ], }, twitter: { card: "summary_large_image", title: "Assurance Sala Al Jadida | Agence Sanlam", description: "Devis gratuit assurance auto, santé, habitation. Réponse en 24h. Appel: 05 37 53 48 39", images: ["http://img.b2bpic.net/free-photo/business-people-walking-outside-office-building_107420-74359.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}