2025-02-26 11:53:10 +01:00
|
|
|
import type { Metadata } from "next";
|
|
|
|
import "./globals.css";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2025-02-26 12:05:12 +01:00
|
|
|
title: "Create Next App",
|
|
|
|
description: "Generated by create next app",
|
2025-02-26 11:53:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export default function RootLayout({
|
2025-02-26 12:05:12 +01:00
|
|
|
children,
|
2025-02-26 11:53:10 +01:00
|
|
|
}: Readonly<{
|
2025-02-26 12:05:12 +01:00
|
|
|
children: React.ReactNode;
|
2025-02-26 11:53:10 +01:00
|
|
|
}>) {
|
2025-02-26 12:05:12 +01:00
|
|
|
return (
|
|
|
|
<html lang="en">
|
2025-02-26 23:43:12 +01:00
|
|
|
<body>
|
2025-02-26 12:05:12 +01:00
|
|
|
{children}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
);
|
2025-02-26 11:53:10 +01:00
|
|
|
}
|