import type { Metadata } from "next"; import { Inter, JetBrains_Mono, Domine, Noto_Sans_SC, Noto_Serif_SC } from "next/font/google"; import "./globals.css"; import Providers from "@/components/Providers"; const inter = Inter({ subsets: ["latin"], variable: "--font-inter", display: "swap", }); const jetbrainsMono = JetBrains_Mono({ subsets: ["latin"], variable: "--font-jetbrains", display: "swap", }); const domine = Domine({ subsets: ["latin"], variable: "--font-domine", weight: ["400", "700"], display: "swap", }); const notoSansSC = Noto_Sans_SC({ subsets: ["latin"], variable: "--font-noto-sans-sc", weight: ["400", "500", "700"], display: "swap", }); const notoSerifSC = Noto_Serif_SC({ subsets: ["latin"], variable: "--font-noto-serif-sc", weight: ["400", "700"], display: "swap", }); export const metadata: Metadata = { title: "Asset Homepage", description: "Asset management platform homepage", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }