24 lines
435 B
TypeScript
24 lines
435 B
TypeScript
import '@/styles/tailwind.css'
|
|
import type { Metadata } from 'next'
|
|
|
|
export const metadata: Metadata = {
|
|
title: {
|
|
template: '%s - Drop OSS',
|
|
default: 'Drop - An open Steam',
|
|
},
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="text-zinc-100 bg-zinc-950 antialiased">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|