diff options
Diffstat (limited to 'partials/navbar.html')
-rw-r--r-- | partials/navbar.html | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/partials/navbar.html b/partials/navbar.html index d97ebb3..893659c 100644 --- a/partials/navbar.html +++ b/partials/navbar.html @@ -1,17 +1,19 @@ <nav class="w-full mx-auto mt-10"> - <div class="flex flex-wrap items-center px-10 gap-4 text-center text-lg"> + <div class="flex flex-wrap items-center px-10 gap-4 text-center text-lg lg:text-2xl"> - <a href="/" class="cursor-pointer font-semibold hover:underline"> + <a href="/" class="cursor-pointer font-bold hover:underline"> COMPROMYSE </a> - <a href="/projects" class="hover:underline"> - [ PROJECTS ] - </a> + <div class="flex items-center gap-4 flex-wrap"> + <a href="/projects" class="hover:underline"> + [ PROJECTS ] + </a> - <a href="#" class="hover:underline"> - [ ABOUT ] - </a> + <a href="#" class="hover:underline"> + [ ABOUT ] + </a> + </div> </div> </nav> |