15 lines
399 B
TypeScript
15 lines
399 B
TypeScript
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = { title: "Polderfest 2027", description: "Polderfest 2027" };
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="nl">
|
|
<body className="min-h-screen bg-white text-zinc-900 antialiased">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|