diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..a7bcc6c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,48 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Public_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "FootballHub - Live Scores, News & Analysis", + description: "Your ultimate football destination. Get live scores, breaking news, expert analysis, and team information for all major leagues worldwide.", + keywords: "football news, live scores, soccer updates, match analysis, football statistics, team information", + openGraph: { + title: "FootballHub - Live Scores & Football News", + description: "Real-time football scores, breaking news, expert analysis, and comprehensive match coverage for global fans.", + siteName: "FootballHub", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "FootballHub - Live Football Scores", + description: "Your source for real-time football scores, breaking news, and expert analysis.", + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +52,9 @@ export default function RootLayout({ return ( - + {children}