import AppProvider from "@/components/AppProvider"; import { Metadata } from "next"; import { Inter } from "next/font/google"; import Image from "next/image"; import "react-toastify/dist/ReactToastify.css"; 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: "Scoresaber Reloaded", description: "Aggregate your scores with other leaderboards together!", url: "https://ssrdev.fascinated.cc", locale: "en_US", type: "website", }, themeColor: "#3B82F6", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
Background image
{children} ); }