diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 07e9365..d28eeb0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,39 +1,22 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Chess Club - Master Your Game", description: "Join our vibrant chess community for tournaments, coaching, and competitive play. Build your skills and connect with chess enthusiasts.", keywords: "chess club, tournaments, chess lessons, community, competitive chess", openGraph: { - title: "Chess Club - Master Your Game", description: "Join our vibrant chess community for tournaments, coaching, and competitive play.", siteName: "Chess Club", type: "website"}, - twitter: { - card: "summary_large_image", title: "Chess Club - Master Your Game", description: "Join our vibrant chess community for tournaments, coaching, and competitive play."}, -}; + title: "Chess Club", description: "A vibrant chess community for players of all skill levels"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}