2023-10-19 04:21:35 +00:00
|
|
|
import type { Metadata } from "next";
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
import "./globals.css";
|
2023-10-18 06:58:40 +00:00
|
|
|
|
2023-10-19 04:21:35 +00:00
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
2023-10-18 06:58:40 +00:00
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2023-10-19 04:21:35 +00:00
|
|
|
title: {
|
|
|
|
template: "Scoresaber Reloaded - %s",
|
|
|
|
default: "Scoresaber Reloaded",
|
|
|
|
},
|
|
|
|
};
|
2023-10-18 06:58:40 +00:00
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
children,
|
|
|
|
}: {
|
2023-10-19 04:21:35 +00:00
|
|
|
children: React.ReactNode;
|
2023-10-18 06:58:40 +00:00
|
|
|
}) {
|
|
|
|
return (
|
|
|
|
<html lang="en">
|
|
|
|
<body className={inter.className}>{children}</body>
|
|
|
|
</html>
|
2023-10-19 04:21:35 +00:00
|
|
|
);
|
2023-10-18 06:58:40 +00:00
|
|
|
}
|