diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 35d9917..8b13789 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2811 +1 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "L'âme du Football - Biographies, Valeurs & Carrières", - description: "Découvrez les histoires inspirantes de grands joueurs, explorez les valeurs fondamentales du football et les carrières post-retraite.", - keywords: "football, biographies, joueurs, valeurs, carrière, sport, culture", - metadataBase: new URL("https://lamedfootball.com"), - alternates: { - canonical: "https://lamedfootball.com", - }, - openGraph: { - title: "L'âme du Football", - description: "Célébrez la culture du football à travers des histoires inspirantes et des valeurs fondamentales", - url: "https://lamedfootball.com", - siteName: "L'âme du Football", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/soccer-fans-cheering-their-team-stadium_23-2151536121.jpg", - alt: "L'âme du Football", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "L'âme du Football", - description: "Biographies, Valeurs et Carrières dans le Football", - images: [ - "http://img.b2bpic.net/free-photo/soccer-fans-cheering-their-team-stadium_23-2151536121.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -