import { ThemeProvider } from "@/components/global/ThemeProvider"; import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import type { ReactNode } from "react"; import "./globals.css"; // Root layout and metadata for the admin app. export const dynamic = "force-dynamic"; export const revalidate = 0; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { title: "Gaertan Art Admin", description: "Admin page for the gaertan.art website", }; export default function RootLayout({ children, }: Readonly<{ children: ReactNode; }>) { return ( {children} ); }