This commit is contained in:
2025-12-09 22:45:03 +01:00
parent 3adf2e5e94
commit 3659d25e52
20 changed files with 2537 additions and 85 deletions

View File

@@ -522,40 +522,6 @@ export default async function DashboardPage() {
</div>
)}
</Card>
{/* Quick Links */}
<Card className="bg-gradient-to-br from-iron-gray to-iron-gray/80">
<h3 className="text-lg font-semibold text-white mb-4 flex items-center gap-2">
<Zap className="w-5 h-5 text-warning-amber" />
Quick Links
</h3>
<div className="space-y-2">
<Link
href="/leaderboards"
className="flex items-center gap-3 p-3 rounded-lg bg-deep-graphite/50 border border-charcoal-outline hover:border-yellow-400/30 transition-colors"
>
<Trophy className="w-5 h-5 text-yellow-400" />
<span className="text-white text-sm">Leaderboards</span>
<ChevronRight className="w-4 h-4 text-gray-500 ml-auto" />
</Link>
<Link
href="/teams"
className="flex items-center gap-3 p-3 rounded-lg bg-deep-graphite/50 border border-charcoal-outline hover:border-purple-400/30 transition-colors"
>
<Users className="w-5 h-5 text-purple-400" />
<span className="text-white text-sm">Teams</span>
<ChevronRight className="w-4 h-4 text-gray-500 ml-auto" />
</Link>
<Link
href="/leagues/create"
className="flex items-center gap-3 p-3 rounded-lg bg-deep-graphite/50 border border-charcoal-outline hover:border-primary-blue/30 transition-colors"
>
<Flag className="w-5 h-5 text-primary-blue" />
<span className="text-white text-sm">Create League</span>
<ChevronRight className="w-4 h-4 text-gray-500 ml-auto" />
</Link>
</div>
</Card>
</div>
</div>
</section>