23 lines
364 B
TypeScript
23 lines
364 B
TypeScript
import './globals.css'
|
|
import { PageNavbar } from '@/components/navbar'
|
|
|
|
export const metadata = {
|
|
title: 'Stellaris Ethics Compass',
|
|
description: '',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
<PageNavbar />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|