added fonts

This commit is contained in:
2025-07-02 11:28:41 +02:00
parent 4134e3a234
commit 142d2986b6
9079 changed files with 1498421 additions and 2 deletions
+7 -1
View File
@@ -3,6 +3,12 @@ import "./style.css";
import { useState } from "react";
import { AuthProvider } from "react-oidc-context";
import { oidcConfig, userManager } from "muzak/config/auth";
import { Source_Sans_3 } from "next/font/google";
const sourceSans = Source_Sans_3({
weight: ["400"],
subsets: ["latin"],
});
export default function RootLayout({
children,
@@ -16,7 +22,7 @@ export default function RootLayout({
};
return (
<html lang="en">
<html lang="en" className={sourceSans.className}>
<body className={`bg-game-show ${isAnimate ? "animate" : ""} h-screen`}>
<AuthProvider {...oidcConfig}>{children}</AuthProvider>
<button