added fonts
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -1,12 +1,18 @@
|
||||
"use client";
|
||||
import { useState } from "react";
|
||||
import { Vollkorn } from "next/font/google";
|
||||
|
||||
const vollkorn = Vollkorn({
|
||||
weight: "600",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function Nominations() {
|
||||
const [songURL, setSongURL] = useState("");
|
||||
|
||||
return (
|
||||
<main className="flex min-h-screen flex-col items-center justify-between p-24 bg-orange-200">
|
||||
<h1 className="text-3xl font-bold">Nominaties</h1>
|
||||
<h1 className={`${vollkorn.className} text-[42px]`}>Nominaties</h1>
|
||||
|
||||
<form className="flex flex-col items-center justify-between">
|
||||
<label className="block w-lg text-gray-700 text-sm font-bold mb-2">
|
||||
|
||||
Reference in New Issue
Block a user