From 819cb30e4f72bf8de7de5895e7555fcbbb8ee2e8 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 16:06:22 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 46 +++++----------------------------------------- 1 file changed, 5 insertions(+), 41 deletions(-) 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}