mirror of
https://github.com/Sevichecc/m-oauth.git
synced 2025-04-30 06:59:29 +08:00
22 lines
450 B
TypeScript
22 lines
450 B
TypeScript
import "@/styles/globals.css"
|
|
import { Inter } from 'next/font/google'
|
|
const inter = Inter({ subsets: ['latin'] })
|
|
|
|
export const metadata = {
|
|
title: 'Ma-OAuth',
|
|
description: 'Generated Access Token for Akkoma / Pleroma / Mastodon',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={inter.className}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|