24 lines
451 B
TypeScript
24 lines
451 B
TypeScript
|
import type { Metadata } from "next";
|
||
|
import "./globals.css";
|
||
|
|
||
|
export const metadata: Metadata = {
|
||
|
title: "Create Next App",
|
||
|
description: "Generated by create next app",
|
||
|
};
|
||
|
|
||
|
export default function RootLayout({
|
||
|
children,
|
||
|
}: Readonly<{
|
||
|
children: React.ReactNode;
|
||
|
}>) {
|
||
|
return (
|
||
|
<html lang="pl">
|
||
|
<body
|
||
|
className={`antialiased p-4 flex flex-col gap-2 items-center`}
|
||
|
>
|
||
|
{children}
|
||
|
</body>
|
||
|
</html>
|
||
|
);
|
||
|
}
|