Files
2026FIFAWorldCup/platform/web/components/LeaderboardBoard.tsx
QuantBot aa7e3bba76
Some checks failed
2026 World Cup Quant Platform - Production Deployment / Code Quality & Testing (push) Failing after 1m49s
2026 World Cup Quant Platform - Production Deployment / Deploy to Production VM via Rsync (push) Has been skipped
chore: migrate deployment to Gitea Actions with zero-trust rsync
2026-06-16 19:06:50 +08:00

23 lines
934 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
'use client';
import React from 'react';
export default function LeaderboardBoard() {
return (
<div className="w-full bg-stone-900 p-6 rounded-lg border border-stone-700 shadow-xl">
<div className="mb-6">
<h2 className="text-2xl text-stone-100 font-dotmatrix uppercase font-bold tracking-wider border-b border-stone-700 pb-2">
</h2>
<p className="text-stone-400 text-sm mt-1">
</p>
</div>
<div className="rounded-lg border border-stone-700 bg-stone-950/70 p-4 text-sm leading-6 text-stone-300">
</div>
</div>
);
}