feature/share-libs
tsx 22 lines 479 Bytes
Raw
1 import type { Metadata } from "next";
2 import { Inter } from "next/font/google";
3 import "./../globals.css";
4
5 const inter = Inter({ subsets: ["latin"] });
6
7 export const metadata: Metadata = {
8 title: "Community",
9 description: "Join the community and start playing!",
10 };
11
12 export default function RootLayout({
13 children,
14 }: Readonly<{
15 children: React.ReactNode;
16 }>) {
17 return (
18 <html lang="en">
19 <body className={inter.className}>{children}</body>
20 </html>
21 );
22 }