pelita-webtournament/app/layout.tsx
2024-09-04 14:59:54 +02:00

23 lines
470 B
TypeScript

import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Pelita Tournament Heraklion 2024",
description: "ASPP2024",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}