We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19fa675 commit 071080cCopy full SHA for 071080c
src/app/judging/JudgingTable.tsx
@@ -1,5 +1,6 @@
1
"use client";
2
3
+import Image from "next/image";
4
import { useState } from "react";
5
6
import type { Schema } from "@/amplify/data/resource";
@@ -53,8 +54,17 @@ export default function JudgingTable({
53
54
const isFetching = roomIsFetching && teamsForRoomIsFetching;
55
if (isFetching || !roomData || !teamsForRoomData) {
56
return (
- <div>
57
- <LoadingRing />
+ <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
+ />
68
</div>
69
);
70
}
0 commit comments