bistro/frontend/app/layout.tsx

24 lines
451 B
TypeScript
Raw Normal View History

2024-12-16 16:35:12 +01:00
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>
);
}