makearmy-app/app/layout.tsx

20 lines
317 B
TypeScript
Raw Normal View History

2025-09-22 10:37:53 -04:00
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>
)
}