From 866a99f125ca39cf32dcfabda3a642af53d709f8 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 21:17:30 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++------------------------------------ 1 file changed, 6 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1c0ecfa..e592021 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}