Skip to content
This repository was archived by the owner on Sep 13, 2025. It is now read-only.

Commit 9c8fd22

Browse files
committed
Improve podium
1 parent b6944d6 commit 9c8fd22

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

website/src/components/WinnerPodium.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,18 @@ export function WinnerPodium({ winners }: WinnerPodiumProps) {
4141
<div className="flex flex-col items-center mb-8">
4242
<h2 className="text-2xl font-semibold mb-4 text-center">Overall Winners</h2>
4343
<div className="flex items-center gap-2 text-gray-600">
44-
<span>Sponsored by</span>
44+
<span>Main prize sponsored by</span>
4545
<img
4646
src="/images/partners/speedinvest.png"
4747
alt="Speedinvest Logo"
4848
className="h-6 w-auto"
4949
/>
5050
</div>
5151
</div>
52-
<div className="flex items-end justify-center gap-4 h-64">
52+
<div className="flex items-end justify-center gap-4 h-6448">
5353
{/* Second Place */}
5454
{winners[1] && (
55-
<div className="w-1/3">
55+
<div className="w-1/3 text-center">
5656
<div
5757
className={getPodiumStyle(2)}
5858
onClick={() => handlePodiumClick(winners[1])}
@@ -67,7 +67,7 @@ export function WinnerPodium({ winners }: WinnerPodiumProps) {
6767

6868
{/* First Place */}
6969
{winners[0] && (
70-
<div className="w-1/3">
70+
<div className="w-1/3 text-center">
7171
<div
7272
className={getPodiumStyle(1)}
7373
onClick={() => handlePodiumClick(winners[0])}
@@ -82,7 +82,7 @@ export function WinnerPodium({ winners }: WinnerPodiumProps) {
8282

8383
{/* Third Place */}
8484
{winners[2] && (
85-
<div className="w-1/3">
85+
<div className="w-1/3 text-center">
8686
<div
8787
className={getPodiumStyle(3)}
8888
onClick={() => handlePodiumClick(winners[2])}

0 commit comments

Comments
 (0)