12 lines
657 B
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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.

<nav class="flex flex-wrap gap-3 justify-center my-6 p-4 bg-gray-100 rounded-lg">
<a href="/" class="btn-primary">🏠 Home</a>
<a href="/leaderboard" class="btn-primary">📊 Leaderboard</a>
<a href="/players" class="btn-primary">👥 Players</a>
<a href="/players/new" class="btn-primary"> Add Player</a>
<a href="/matches" class="btn-primary">🎯 Match History</a>
<a href="/matches/new" class="btn-success">✅ Record Match</a>
<a href="/balance" class="btn-warning">⚖️ Balance Teams</a>
<a href="/daily" class="btn-primary">📈 Daily Summary</a>
<a href="/about" class="btn-primary"> About</a>
</nav>