Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1d50bc3839 | |||
| 479dbe5c2d |
@@ -84,7 +84,7 @@ export default function Lobby() {
|
||||
const newUser = {
|
||||
id: user["id"],
|
||||
name: user["username"],
|
||||
avatar: `https://i.pravatar.cc/150?img=${user["id"]}`,
|
||||
avatar: `https://api.dicebear.com/9.x/bottts-neutral/svg?seed=${user["id"]}`,
|
||||
hidden: false,
|
||||
};
|
||||
|
||||
@@ -116,7 +116,7 @@ export default function Lobby() {
|
||||
{
|
||||
id: userId,
|
||||
name: userName,
|
||||
avatar: `https://i.pravatar.cc/150?img=${userId}`,
|
||||
avatar: `https://api.dicebear.com/9.x/bottts-neutral/svg?seed=${userId}`,
|
||||
},
|
||||
];
|
||||
});
|
||||
@@ -133,7 +133,7 @@ export default function Lobby() {
|
||||
{
|
||||
id: userId,
|
||||
name: userName,
|
||||
avatar: `https://i.pravatar.cc/150?img=${userId}`,
|
||||
avatar: `https://api.dicebear.com/9.x/bottts-neutral/svg?seed=${userId}`,
|
||||
},
|
||||
];
|
||||
});
|
||||
|
||||
@@ -1,32 +0,0 @@
|
||||
"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">
|
||||
<div>
|
||||
<h1
|
||||
className={`${nunito.className} text-outline text-[42px] tracking-tighter text-yellow-500`}
|
||||
>
|
||||
PAUZE
|
||||
</h1>
|
||||
</div>
|
||||
<img
|
||||
src="https://c.tenor.com/uWx6oZf6NnsAAAAC/tenor.gif"
|
||||
className="w-1/3 rounded-full"
|
||||
/>
|
||||
<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"
|
||||
>
|
||||
HERVATTEN
|
||||
</Link>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user