diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-31 21:30:37 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-31 21:30:37 +0530 | 
| commit | d0f943c6623e8ff538e8d8c48283831e9f3c1147 (patch) | |
| tree | f1b0718aa1a6c577458a3b0c035f2d6c46f619e8 /partials/navbar.html | |
| parent | a551acb29fc43adeb034e9d9a67e711a8c6bcf17 (diff) | |
site: update layout & msg
Diffstat (limited to '')
| -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> | 
