2024-09-03 19:21:04 +02:00
|
|
|
export const metadata = {
|
|
|
|
title: 'Next.js',
|
|
|
|
description: 'Generated by Next.js',
|
|
|
|
}
|
2024-09-03 19:08:37 +02:00
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
children,
|
2024-09-03 19:21:04 +02:00
|
|
|
}: {
|
|
|
|
children: React.ReactNode
|
|
|
|
}) {
|
2024-09-03 19:08:37 +02:00
|
|
|
return (
|
|
|
|
<html lang="en">
|
2024-09-03 19:21:04 +02:00
|
|
|
<body>{children}</body>
|
2024-09-03 19:08:37 +02:00
|
|
|
</html>
|
2024-09-03 19:21:04 +02:00
|
|
|
)
|
2024-09-04 12:11:49 +02:00
|
|
|
}
|