test / notme /src /app /layout.tsx
dcrey7's picture
Upload 522 files
811126d verified
import "./globals.css";
import "./styles/fonts.css";
import "./styles/animations.css";
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Game Homepage",
description: "Welcome to our awesome game!",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className="font-sans">{children}</body>
</html>
);
}