import "@/styles/globals.css"; import { fontSans } from "@/lib/fonts"; import { cn } from "@/lib/utils"; import { ThemeProvider } from "@/components/ui/theme-provider"; export const metadata = { title: "M-OAuth", description: "Access token generator for Akkoma, Pleroma, Mastodon, Misskey APIs.", themeColor: [ { media: "(prefers-color-scheme: light)", color: "white" }, { media: "(prefers-color-scheme: dark)", color: "black" }, ], }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (