Skip to content

Commit 071080c

Browse files
committed
kevin awwww cutteee
1 parent 19fa675 commit 071080c

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

src/app/judging/JudgingTable.tsx

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"use client";
22

3+
import Image from "next/image";
34
import { useState } from "react";
45

56
import type { Schema } from "@/amplify/data/resource";
@@ -53,8 +54,17 @@ export default function JudgingTable({
5354
const isFetching = roomIsFetching && teamsForRoomIsFetching;
5455
if (isFetching || !roomData || !teamsForRoomData) {
5556
return (
56-
<div>
57-
<LoadingRing />
57+
<div className="m-4 flex h-full flex-col justify-center">
58+
<div className="-ml-4 flex justify-center">
59+
<LoadingRing />
60+
</div>
61+
62+
<Image
63+
src="/svgs/admin/Kevin.svg"
64+
alt="Kevin Icon"
65+
width={240}
66+
height={240}
67+
/>
5868
</div>
5969
);
6070
}

0 commit comments

Comments
 (0)