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