diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 4053de3..6d5f7e0 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,58 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Roboto } 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 roboto = Roboto({
- variable: "--font-roboto", subsets: ["latin"],
- weight: ["100", "300", "400", "500", "700", "900"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Chess Club | Master Your Game", description: "Join our vibrant chess community with expert coaching, monthly tournaments, and state-of-the-art facilities for players of all skill levels.", keywords: "chess club, chess lessons, chess tournaments, chess coaching, chess community, chess training", metadataBase: new URL("https://chessclub.com"),
- alternates: {
- canonical: "https://chessclub.com"},
- openGraph: {
- title: "Chess Club | Master Your Game", description: "Join 150+ passionate chess players and elevate your game with expert instruction and competitive tournaments.", url: "https://chessclub.com", siteName: "Chess Club", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/classic-chess-board-still-life_23-2150314878.jpg", alt: "Chess Club - Master Your Game"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Chess Club | Master Your Game", description: "Join our thriving chess community with expert coaching and tournaments.", images: ["http://img.b2bpic.net/free-photo/classic-chess-board-still-life_23-2150314878.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Chess Club - Master the Game", description: "Join our vibrant chess community. Improve your skills, compete in tournaments, and connect with passionate chess players."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-