import type { Metadata } from "next" import { Syne, DM_Sans } from "next/font/google" import "./globals.css" import { Providers } from "./providers" const syne = Syne({ variable: "--font-heading", subsets: ["latin"], weight: ["400", "500", "600", "700", "800"], }) const dmSans = DM_Sans({ variable: "--font-sans", subsets: ["latin"], weight: ["400", "500", "600", "700"], }) export const metadata: Metadata = { title: "WrestleDesk", description: "Wrestling Club Management System", } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return (