import { Metadata } from "next"; import { Inter } from "next/font/google"; import Image from "next/image"; import "./globals.css"; const font = Inter({ subsets: ["latin-ext"], weight: "500" }); export const metadata: Metadata = { title: { template: "Scoresaber Reloaded - %s", default: "Scoresaber Reloaded", }, openGraph: { title: "Next.js", description: "The React Framework for the Web", url: "https://nextjs.org", siteName: "Next.js", locale: "en_US", type: "website", }, }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
Background image
{children} ); }