This commit is contained in:
2024-05-10 09:38:31 +03:00
parent 9a5f895b93
commit 49cc44027d
81 changed files with 6093 additions and 28 deletions

View File

@@ -0,0 +1,22 @@
{% load static %}
<nav class="bg-white border-b border-gray-200 px-4 py-2.5 dark:bg-gray-800 dark:border-gray-700 fixed left-0 right-0 top-0 z-50">
<div class="flex flex-wrap justify-between items-center">
<div class="flex justify-start items-center">
{% include 'components/navbars/burger.html' %}
{% include 'components/navbars/logo.html' %}
{% include 'components/navbars/search.html' %}
</div>
<div class="flex items-center lg:order-2">
<!-- Search -->
{% include 'components/navbars/search_mini.html' %}
<!-- Dark mode -->
{% include 'components/navbars/dark_mode.html' %}
<!-- Notifications -->
{% include 'components/navbars/notifications.html' %}
<!-- Apps -->
{% include 'components/navbars/apps.html' %}
<!-- Profiles -->
{% include 'components/navbars/profiles.html' %}
</div>
</div>
</nav>