pelita-webtournament/app/layout.tsx

23 lines
470 B
TypeScript
Raw Permalink Normal View History

2024-07-05 11:41:32 +02:00
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",
2024-07-05 11:41:32 +02:00
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}