|
|
|
|
@@ -1,53 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { DM_Sans } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
import "@/styles/globals.css";
|
|
|
|
|
|
|
|
|
|
const dmSans = DM_Sans({
|
|
|
|
|
variable: "--font-dm-sans", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "PadelSpot Club Fès - Réservez votre court de padel premium", description: "Club de padel à Fès avec courts premium, éclairage nocturne et réservation facile. 4.9★ - Jouez dès maintenant!", keywords: "padel Fès, club padel Fès, terrain padel, réservation padel, sports Fès", metadataBase: new URL("https://padelspot.ma"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://padelspot.ma"
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "PadelSpot Club - Le meilleur club de padel à Fès", description: "Réservez votre court de padel premium à Fès. Éclairage 24h, communauté accueillante, tarifs transparents.", url: "https://padelspot.ma", siteName: "PadelSpot Club", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/fit-woman-playing-paddle-tennis-side-view_23-2149443558.jpg", alt: "Courts de padel PadelSpot Fès"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "PadelSpot Club Fès - Réservez votre terrain de padel", description: "Courts premium, éclairage nocturne, réservation facile. Rejoignez 500+ joueurs passionnés!", images: ["http://img.b2bpic.net/free-photo/fit-woman-playing-paddle-tennis-side-view_23-2149443558.jpg"]
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
title: "PadelSpot - Meilleur Club de Padel à Fès", description: "Réservez votre terrain de padel en quelques secondes. Courts premium, ambiance sportive, 24h/24. Rejoignez 500+ joueurs actifs à PadelSpot Fès."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="fr">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|