bistro/frontend/app/layout.tsx

21 lines
378 B
TypeScript
Raw Normal View History

import type { Metadata } from 'next';
import './globals.css';
2024-12-16 16:35:12 +01:00
export const metadata: Metadata = {
title: 'Bistro',
2024-12-16 16:35:12 +01:00
};
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">
2024-12-16 16:35:12 +01:00
{children}
</body>
</html>
);
}