29 lines
899 B
HTML
29 lines
899 B
HTML
<nav class="container mx-auto px-6 py-3 flex justify-between items-center">
|
|
<div class="text-2xl font-bold text-gray-800"><a href="/">AnnoMemo</a></div>
|
|
<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>
|
|
<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>
|
|
</nav>
|