-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: initialize navbar and footer design
- Loading branch information
1 parent
a5a18a7
commit ab26939
Showing
8 changed files
with
49 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
<footer> | ||
<h1>Ini Footer</h1> | ||
{% load static %} | ||
<footer class="px-10 py-10 bg-[#003FE2] text-white flex flex-col gap-5"> | ||
<div | ||
class="flex gap-6 items-center justify-center" | ||
> | ||
<img | ||
src="{% static 'assets/eventyog-white.png' %}" | ||
alt="icon" | ||
class="w-16 object-contain" | ||
/> | ||
<h1 class="font-semibold text-xl">EventYog</h1> | ||
</div> | ||
<div class="w-full flex justify-center"> | ||
<h3 class="text-xs">© 2024 EventYog!</h3> | ||
</div> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
<nav> | ||
<h1>Ini Navbar</h1> | ||
{% load static %} | ||
<nav class="px-10 flex items-center py-5 justify-between border-b-[1px] border-black/10"> | ||
<img src={% static "assets/icon.png" %} alt="icon" class="w-16 object-contain"> | ||
<div | ||
class="flex items-center gap-5" | ||
> | ||
<p class="text-sm">Hello, {{user.username}}!</p> | ||
<div class="w-10 h-10 bg-black rounded-full overflow-hidden"> | ||
</div> | ||
<a href="{% url 'auth:logout'%}"> | ||
<button | ||
class="bg-[#003FE2] text-white text-sm font-semibold rounded-2xl h-full hover:scale-105 duration-300 ml-auto px-5 py-2"> | ||
Logout | ||
</button> | ||
</a> | ||
</div> | ||
</nav> |