makearmy-app/app/layout.tsx
2025-09-22 10:37:53 -04:00

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>
)
}