11 Commits

Author SHA1 Message Date
dcf97ec4a2 Merge version_4 into main
Merge version_4 into main
2026-03-03 22:16:07 +00:00
56ce02ee77 Update src/app/page.tsx 2026-03-03 22:16:03 +00:00
c1597e73d4 Update src/app/layout.tsx 2026-03-03 22:16:02 +00:00
28dafbbfcf Merge version_3 into main
Merge version_3 into main
2026-03-03 21:30:11 +00:00
f162317fa7 Update src/app/page.tsx 2026-03-03 21:30:05 +00:00
57f17268bd Merge version_2 into main
Merge version_2 into main
2026-03-03 21:17:37 +00:00
355ce51f6e Update src/app/page.tsx 2026-03-03 21:17:30 +00:00
866a99f125 Update src/app/layout.tsx 2026-03-03 21:17:30 +00:00
b7a369ec05 Merge version_1 into main
Merge version_1 into main
2026-03-03 21:12:23 +00:00
37da64385b Merge version_1 into main
Merge version_1 into main
2026-03-03 21:03:42 +00:00
e12ba22c9f Merge version_1 into main
Merge version_1 into main
2026-03-03 20:55:28 +00:00
2 changed files with 13 additions and 40 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Montserrat } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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"],
});
export const metadata: Metadata = { 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: { title: "Elite Hockey Training", description: "Master elite-level training techniques with personalized coaching, advanced analytics, and proven methodologies designed for competitive hockey players."};
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."},
};
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={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -44,7 +44,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplit <HeroSplit
title="Elevate Your Hockey Game" title="Elevate Your Hockey Game"
description="Master elite-level training techniques with personalized coaching, advanced analytics, and proven methodologies designed for competitive hockey players." description="85% of our athletes advance to higher competitive levels within 12 months—join elite players who've transformed their game through personalized coaching, advanced analytics, and proven training methodologies."
tag="Premium Training" tag="Premium Training"
tagIcon={Zap} tagIcon={Zap}
background={{ variant: "glowing-orb" }} background={{ variant: "glowing-orb" }}
@@ -184,7 +184,7 @@ export default function LandingPage() {
], ],
}, },
{ {
id: "elite-program", tag: "Elite Development", price: "$2,299", period: "/month", description: "Comprehensive elite development program for serious competitors aiming for professional or university hockey careers.", button: { text: "Apply Now", href: "contact" }, id: "elite-program", tag: "Elite Development", price: "$2,299", period: "/month", description: "Comprehensive elite development program for serious competitors aiming for professional or university hockey careers.", button: { text: "Start Elite Program", href: "contact" },
featuresTitle: "What's Included:", features: [ featuresTitle: "What's Included:", features: [
"16 individual coaching sessions", "Advanced analytics and AI tracking", "Weekly strategy sessions", "Competition preparation", "Mental performance coaching", "Professional player mentorship" "16 individual coaching sessions", "Advanced analytics and AI tracking", "Weekly strategy sessions", "Competition preparation", "Mental performance coaching", "Professional player mentorship"
], ],
@@ -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." 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" buttonAnimation="none"
tagAnimation="none" tagAnimation="none"
/> />
@@ -264,4 +267,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }