Files
B42/templates/includes/public_navbar.html
2026-01-07 13:06:58 +05:30

19 lines
687 B
HTML
Executable File

{% load static %}
<nav class="bg-[#111111] text-white">
<div class="max-w-7xl mx-auto px-6 lg:px-8">
<div class="flex items-center justify-between h-20"> <!-- h-20 ≈ py-5 equivalent for consistent height -->
<!-- Left: Logo -->
<div class="flex items-center">
<img src="{% static 'images/logo.svg' %}" alt="B42 Logo" class="h-10 w-auto">
</div>
<!-- Right: CTA Button (visible on all screens) -->
<div class="flex items-center">
<a href="#" class="bg-white text-black font-bold text-lg px-8 py-3 rounded-full hover:bg-gray-200 transition duration-200">
BOOST YOUR GAME
</a>
</div>
</div>
</div>
</nav>