Files
Phillip Tarrant 77d913fe50 feat(web): add navigation menu bar for logged-in users
- Add horizontal nav menu with 7 items: Profile, Characters, Sessions,
  Mechanics, Leaderboard, Settings, Help
- Implement responsive hamburger menu for mobile (≤768px)
- Create pages blueprint with stub routes for new pages
- Add "Coming Soon" styled stub templates with icons
- Include active state highlighting for current page

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-26 10:21:46 -06:00

29 lines
1.2 KiB
HTML

{% extends "base.html" %}
{% block title %}Leaderboard - Code of Conquest{% endblock %}
{% block content %}
<div class="page-container">
<div class="coming-soon-card">
<h1 class="page-title">Leaderboard</h1>
<div class="coming-soon-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
<path d="M6 9H4.5a2.5 2.5 0 0 1 0-5H6"/>
<path d="M18 9h1.5a2.5 2.5 0 0 0 0-5H18"/>
<path d="M4 22h16"/>
<path d="M10 14.66V17c0 .55-.47.98-.97 1.21C7.85 18.75 7 20.24 7 22"/>
<path d="M14 14.66V17c0 .55.47.98.97 1.21C16.15 18.75 17 20.24 17 22"/>
<path d="M18 2H6v7a6 6 0 0 0 12 0V2Z"/>
</svg>
</div>
<p class="coming-soon-text">Coming Soon</p>
<p class="coming-soon-description">
See how you rank against other adventurers. Compete for glory and honor.
</p>
<a href="{{ url_for('character_views.list_characters') }}" class="btn btn-primary">
Back to Characters
</a>
</div>
</div>
{% endblock %}