diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d5bcabe..615de4a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +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 - Master the Game", description: "Join our vibrant chess community for expert coaching, tournaments, and training. Connect with players of all levels.", keywords: "chess club, coaching, tournaments, strategic thinking, board games", metadataBase: new URL("https://www.yourchessclub.com"), - alternates: { - canonical: "https://www.yourchessclub.com"}, - openGraph: { - title: "Chess Club - Master the Game", description: "Join our vibrant chess community for expert coaching, tournaments, and training.", url: "https://www.yourchessclub.com", siteName: "Chess Club", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/transparent-chess-pieces-board_23-2148198771.jpg", alt: "Chess Club"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Chess Club - Master the Game", description: "Join our vibrant chess community for expert coaching, tournaments, and training.", images: ["http://img.b2bpic.net/free-photo/transparent-chess-pieces-board_23-2148198771.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Chess Club", description: "Join our vibrant chess community"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}