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> | |
); | |
} | |