diff --git a/frontend/src/app/post-game/page.tsx b/frontend/src/app/post-game/page.tsx index 1ea991c..0252302 100644 --- a/frontend/src/app/post-game/page.tsx +++ b/frontend/src/app/post-game/page.tsx @@ -2,6 +2,11 @@ import { useEffect, useState } from "react"; import { api } from "muzak/data/fetcher"; import { useSession } from "muzak/contexts/SessionContext"; +import { Nunito } from "next/font/google"; +const nunito = Nunito({ + weight: "900", + subsets: ["latin"], +}); export default function PostGame() { const { sessionId, setSessionId } = useSession(); @@ -22,10 +27,34 @@ export default function PostGame() { return (
-

Post-game

-

{trackCount} tracks

-

{voteCount} votes

-

{averageVote} average vote

+

+ Bedankt voor het stemmen! +

+
+

+ Jullie hebben {voteCount} stemmen uitgebracht op {trackCount} nummers. +

+

+ Gemiddeld vonden jullie {(averageVote * 100).toFixed(0)}% van de + nummers best oké. +

+

+ Applaus voor jezelf! +

+
+

+ Tot HDcon! +

); }