PenParse/penparse/webui/templates/partial/nav.html

29 lines
899 B
HTML
Raw Normal View History

2024-11-24 07:45:02 +00:00
<nav class="container mx-auto px-6 py-3 flex justify-between items-center">
2024-12-07 22:00:29 +00:00
<div class="text-2xl font-bold text-gray-800"><a href="/">PenParse</a></div>
2024-11-24 07:45:02 +00:00
<div>
<a href="#features" class="text-gray-600 hover:text-gray-800 px-3 py-2"
>Features</a
>
<a href="#integrations" class="text-gray-600 hover:text-gray-800 px-3 py-2"
>Integrations</a
>
<a href="#pricing" class="text-gray-600 hover:text-gray-800 px-3 py-2"
>Pricing</a
>
</div>
2024-12-07 21:30:55 +00:00
<div>
{% if user.is_authenticated %}
<a
href="{% url 'dashboard' %}"
class="bg-blue-500 text-white px-6 py-3 rounded-lg hover:bg-blue-600 transition duration-300"
>My Dashboard</a
{% else %}
<a
href="{% url 'register' %}"
class="bg-blue-500 text-white px-6 py-3 rounded-lg hover:bg-blue-600 transition duration-300"
>Get Started</a
>
{% endif %}
</div>
2024-11-24 07:45:02 +00:00
</nav>