First Commit

This commit is contained in:
Ralex91
2024-01-31 20:06:10 +01:00
commit e122fe1078
58 changed files with 6853 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
export default function Leaderboard({ data }) {
return (
<section className="max-w-7xl mx-auto w-full flex-1 flex-col relative items-center justify-center flex">
<h2 className="text-white drop-shadow-md text-5xl font-bold mb-6">
Leaderboard
</h2>
<div className="w-full flex-col flex gap-2">
<div className=" bg-orange-500 rounded-md p-3 flex justify-between w-full text-white font-bold text-2xl">
<span>Username</span>
<span>10000</span>
</div>
<div className="bg-orange-500 rounded-md p-3 flex justify-between w-full text-white font-bold text-2xl">
<span>Username</span>
<span>10000</span>
</div>
<div className="bg-orange-500 rounded-md p-3 flex justify-between w-full text-white font-bold text-2xl">
<span>Username</span>
<span>10000</span>
</div>
</div>
</section>
)
}