diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 596dabf..3de5cfe 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,16 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Chess Club - Join Our Thriving Community", description: "Join our chess club for tournaments, coaching, and community. Connect with players at all levels, compete weekly, and master the ancient game.", keywords: "chess club, tournaments, coaching, chess community, competitive chess", metadataBase: new URL("https://chessclub.com"), - alternates: { - canonical: "https://chessclub.com" - }, - openGraph: { - title: "Chess Club - Strategy, Competition & Community", description: "Where chess players unite. Join tournaments, attend master classes, and improve your game.", url: "https://chessclub.com", siteName: "Chess Club", type: "website" - }, - twitter: { - card: "summary_large_image", title: "Chess Club - Join Our Community", description: "Tournaments, coaching, and community for chess enthusiasts of all levels." - }, - robots: { - index: true, - follow: true - } -}; + title: "Chess Club", description: "Where strategy meets community. Join passionate players, master the ancient game, and compete in tournaments that celebrate excellence and intellectual pursuit."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}