diff --git a/src/app/matches/[id]/page.tsx b/src/app/matches/[id]/page.tsx index 8117d53..1665684 100644 --- a/src/app/matches/[id]/page.tsx +++ b/src/app/matches/[id]/page.tsx @@ -85,13 +85,13 @@ export default async function MatchDetailPage({ params }: PageProps) {

Match Setup

-
- {/* Table Square */} -
+
+ {/* Table Square - Larger with more padding */} +
{/* Top: Team 1 Player 1 */} -
-
-

+

+
+

{match.team1P1.name}

@@ -103,14 +103,14 @@ export default async function MatchDetailPage({ params }: PageProps) { )}

-
Team 1
+
Team 1
{/* Bottom: Team 2 Player 2 */} -
-
Team 2
-
-

+

+
Team 2
+
+

{match.team2P2.name}

@@ -125,12 +125,12 @@ export default async function MatchDetailPage({ params }: PageProps) {

{/* Left: Team 1 Player 2 */} -
-
-

+

+
+

{match.team1P2.name}

-

+

Elo: {match.team1P2.currentElo} {eloChanges[match.team1P2.id] !== undefined && ( = 0 ? "text-green-600" : "text-red-600"}> @@ -142,12 +142,12 @@ export default async function MatchDetailPage({ params }: PageProps) {

{/* Right: Team 2 Player 1 */} -
-
-

+

+
+

{match.team2P1.name}

-

+

Elo: {match.team2P1.currentElo} {eloChanges[match.team2P1.id] !== undefined && ( = 0 ? "text-green-600" : "text-red-600"}> @@ -160,16 +160,16 @@ export default async function MatchDetailPage({ params }: PageProps) { {/* Score in Center */}

-
+
-

+

{match.team1Score}

Team 1

-
+
-

+

{match.team2Score}

Team 2