Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8d8ebbb2fd | |||
| fecd44ac01 | |||
| d3e9df0902 | |||
| 0588f7b31d | |||
| f641cb2eef | |||
| 02fdb7c097 |
@@ -1,62 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Poppins } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const poppins = Poppins({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-poppins",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "RugbyStats - Real-Time Rugby Performance Tracking & Analytics",
|
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."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body className={`${poppins.variable} antialiased`}>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1424,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -153,7 +153,7 @@ export default function HomePage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "pro", badge: "Most Popular", badgeIcon: Sparkles,
|
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: [
|
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"
|
"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"
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user