mirror of
https://github.com/Sevichecc/m-oauth.git
synced 2025-04-30 06:59:29 +08:00
26 lines
594 B
TypeScript
26 lines
594 B
TypeScript
import "@/styles/globals.css"
|
|
import { fontSans } from "@/lib/fonts"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
export const metadata = {
|
|
title: 'M-OAuth',
|
|
description: 'Access token generator for Akkoma, Pleroma, Mastodon, Misskey APIs.',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<head />
|
|
<body className={cn(
|
|
"min-h-screen bg-background font-sans antialiased mx-auto max-w-2xl px-2 md:px-5 md:pb-10 md:pt-5",
|
|
fontSans.variable
|
|
)}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|