19 lines
317 B
TypeScript
19 lines
317 B
TypeScript
import './styles/globals.css'
|
|
|
|
export const metadata = {
|
|
title: 'LE-DB',
|
|
description: 'Laser Everything Community Database',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en" className="dark">
|
|
<body>{children}</body>
|
|
</html>
|
|
)
|
|
}
|
|
|