Files
people-randomizr/app/layout.tsx
Julien Froidefond 165928d64e Init
2025-12-19 09:59:22 +01:00

21 lines
367 B
TypeScript

import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "People Randomizr",
description: "Extract random people from your team",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="fr">
<body>{children}</body>
</html>
);
}