add routing links

This commit is contained in:
2025-07-08 21:10:00 +02:00
parent 3c02ec930b
commit 6b75e787c4
4 changed files with 96 additions and 14 deletions
+28 -1
View File
@@ -1,7 +1,34 @@
"use client";
import { Nunito } from "next/font/google";
import Link from "next/link";
const nunito = Nunito({
weight: "900",
subsets: ["latin"],
});
export default function Pause() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<h1>Pause</h1>
<div>
<h1
className={`${nunito.className} text-outline text-[42px] tracking-tighter text-yellow-500`}
>
PAUZE
</h1>
</div>
<Link
href="/voting"
className="rounded-lg border-2 border-black bg-yellow-500 p-4 text-2xl font-extrabold text-blue-600 hover:bg-yellow-400"
>
START
</Link>
<h1
className={`${nunito.className} text-outline text-[42px] tracking-tighter text-yellow-500`}
>
PAUZE
</h1>
</main>
);
}