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" }, ], icons: { icon: '/favicon.ico', shortcut: '/favicon-16x16/png', apple: "/apple-touch-icon.png", }, openGraph: { title: 'M-OAuth', description: 'Access token generator for Akkoma, Pleroma, Mastodon, Misskey APIs.', url: 'https://m-oauth.seviche.cc', siteName: 'M-OAuth', images: [ { url: '/og.png', width: 800, height: 600, } ], locale: 'en_US', type: 'website', }, }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (