changed styling nominaties

This commit is contained in:
2025-07-30 22:48:02 +02:00
parent 90b523095a
commit 507a65cfde
+35 -29
View File
@@ -1,9 +1,9 @@
"use client"; "use client";
import { useState } from "react"; import { useState } from "react";
import { Vollkorn } from "next/font/google"; import { Nunito } from "next/font/google";
const vollkorn = Vollkorn({ const nunito = Nunito({
weight: "600", weight: "900",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -11,33 +11,39 @@ export default function Nominations() {
const [songURL, setSongURL] = useState(""); const [songURL, setSongURL] = useState("");
return ( return (
<main className="flex min-h-screen flex-col items-center justify-between bg-orange-200 p-24"> <main className="flex min-h-screen flex-col items-center justify-between p-24">
<h1 className={`${vollkorn.className} text text-[42px]`}>Nominaties</h1> <h1
className={`${nunito.className} text-outline text-[42px] tracking-tighter text-yellow-500`}
<form className="flex flex-col items-center justify-between"> >
<label className="w-lg mb-2 block text-sm font-bold text-gray-700"> NOMINATIES
Dump hier je Spotify-link: </h1>
<input <div className="mb-12 flex flex-col items-center justify-between gap-4 rounded-md bg-blue-950/80 p-8">
className="w-full appearance-none rounded border bg-red-50 px-3 py-2 text-gray-700 opacity-70 shadow focus:outline-none" <form className="flex flex-col items-center justify-center gap-4">
type="text" <p className="text-2xl font-semibold text-white drop-shadow-sm drop-shadow-gray-900">
placeholder="Spotify URL" Dump hier je Spotify-link:
value={songURL} </p>
onChange={(e) => setSongURL(e.target.value)} <label className="block w-lg text-sm font-bold text-gray-700">
/> <input
</label> className="w-full rounded border border-white px-4 py-2 font-bold text-white/70 focus:border-yellow-500 focus:outline-2 focus:outline-yellow-500"
type="text"
<button placeholder="Spotify URL"
className="rounded bg-[#2f363c] px-4 py-2 font-bold text-white hover:bg-slate-700" value={songURL}
type="submit" onChange={(e) => setSongURL(e.target.value)}
onClick={(e) => { />
e.preventDefault(); </label>
console.log("Zojuist genomineerd:", songURL);
}}
>
Nomineer
</button>
</form>
<button
className="w-full rounded bg-blue-500 px-4 py-2 text-center font-bold text-white hover:bg-blue-400"
type="submit"
onClick={(e) => {
e.preventDefault();
console.log("Zojuist genomineerd:", songURL);
}}
>
Nomineer
</button>
</form>
</div>
<footer> <footer>
<p>© 2020-2025 Hoestende Draken PartyCo</p> <p>© 2020-2025 Hoestende Draken PartyCo</p>
</footer> </footer>