Merge version_2 into main #5
@@ -1,62 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Poppins } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins",
|
||||
subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "RugbyStats - Real-Time Rugby Performance Tracking & Analytics",
|
||||
description: "Track live match stats, analyze player performance, and get AI coaching insights. Professional rugby stats app for teams, coaches, and players.",
|
||||
keywords: "rugby stats, performance tracking, match analytics, player management, rugby app, coaching software",
|
||||
metadataBase: new URL("https://rugbystats.com"),
|
||||
alternates: {
|
||||
canonical: "https://rugbystats.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "RugbyStats - Rugby Performance Analytics",
|
||||
description: "Real-time match tracking and advanced player analytics for rugby teams.",
|
||||
url: "https://rugbystats.com",
|
||||
siteName: "RugbyStats",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATZzAsZ9mBizbxvrS9QkadjUb4/a-dynamic-rugby-stats-dashboard-interfac-1772618864039-a6500379.png",
|
||||
alt: "RugbyStats Dashboard",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "RugbyStats - Rugby Performance Analytics",
|
||||
description: "Track stats, analyze performance, win more matches.",
|
||||
images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATZzAsZ9mBizbxvrS9QkadjUb4/a-dynamic-rugby-stats-dashboard-interfac-1772618864039-a6500379.png",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "RugbyStats - Real-time Rugby Analytics", description: "Track every stat, analyze every match, dominate every game. Real-time performance tracking and AI-powered coaching insights for rugby teams and players."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${poppins.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1424,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -153,7 +153,7 @@ export default function HomePage() {
|
||||
},
|
||||
{
|
||||
id: "pro", badge: "Most Popular", badgeIcon: Sparkles,
|
||||
price: "£6.99", name: "Pro Plan", buttons: [{ text: "Upgrade Now", href: "/upgrade" }],
|
||||
price: "£6.99/year", name: "Pro Plan", buttons: [{ text: "Upgrade Now", href: "/upgrade" }],
|
||||
features: [
|
||||
"Unlimited matches and tracking", "Advanced player analytics", "AI coaching insights", "Physical metrics tracking", "Kick maps and radar charts", "Performance trend analysis", "Custom dashboards", "Export match data", "Priority support", "Multi-team management"
|
||||
],
|
||||
@@ -251,4 +251,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user