Merge version_2 into main #2
@@ -1,55 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_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 openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Live Football Scores & Match Updates | ScoreHub", description: "Get real-time football scores, live match updates, player statistics, and comprehensive league standings. Follow every goal with instant notifications and expert analysis.", keywords: "football scores, live scores, match updates, soccer statistics, league standings, player stats", openGraph: {
|
||||
title: "Live Football Scores & Match Updates | ScoreHub", description: "Real-time football scores and comprehensive match analysis. Never miss a goal again.", siteName: "ScoreHub", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATpTqjnUbfqAjzOQMN0MWrMqLg/modern-football-stadium-at-night-with-br-1772626491553-6bc05b00.png", alt: "Football stadium at night"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Live Football Scores | ScoreHub", description: "Follow live football matches with real-time scores and expert analysis", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATpTqjnUbfqAjzOQMN0MWrMqLg/modern-football-stadium-at-night-with-br-1772626491553-6bc05b00.png"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "ScoreHub - Live Football Scores & Match Updates", description: "Get real-time scores, player statistics, and comprehensive coverage of every match. Your ultimate destination for football insights and live game tracking."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -72,7 +72,7 @@ export default function LandingPage() {
|
||||
id: "1", value: "12", title: "Active Matches", items: ["Real-time score updates", "Player performance tracking", "Live commentary available"]
|
||||
},
|
||||
{
|
||||
id: "2", value: "3,240", title: "Live Viewers", items: ["Global audience watching", "Interactive live chat", "Multi-match viewing"]
|
||||
id: "2", value: "3,240", title: "Right Now Peak Concurrent Users", items: ["Global audience watching", "Interactive live chat", "Multi-match viewing"]
|
||||
},
|
||||
{
|
||||
id: "3", value: "892", title: "Goals Scored Today", items: ["Instant goal notifications", "Replay clips available", "Scoring leader board"]
|
||||
|
||||
Reference in New Issue
Block a user