Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-03 21:17:38 +00:00
2 changed files with 9 additions and 36 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } 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 montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Elite Hockey Training - Professional Coaching for Competitive Players", description: "Master elite-level hockey training with professional coaches. Personalized programs for skill development, competitive advancement, and professional preparation.", keywords: "hockey training, ice hockey coaching, skill development, competitive hockey, hockey coach", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Elite Hockey Training - Professional Coaching", description: "Transform your hockey game with elite coaching and training programs designed for competitive players.", type: "website", siteName: "Elite Hockey Training"},
twitter: {
card: "summary_large_image", title: "Elite Hockey Training - Professional Coaching", description: "Transform your hockey game with elite coaching and training programs."},
};
title: "Elite Hockey Training", description: "Master elite-level training techniques with personalized coaching, advanced analytics, and proven methodologies designed for competitive hockey players."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -228,6 +228,9 @@ export default function LandingPage() {
id: "6", title: "What results can I expect?", content: "On average, players see 15-25% improvement in speed and accuracy within 12 weeks, with significant advancements in competitive positioning and game IQ. Results vary based on current skill level and training consistency."
},
]}
buttons={[
{ text: "Ready to Start Your Journey?", href: "contact" }
]}
buttonAnimation="none"
tagAnimation="none"
/>