blob: ccbc05b7eb57d31c41bda0c7cda33f2231a59061 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | <nav class="w-full mx-auto mt-10">
  <div class="flex flex-wrap items-center px-10 gap-4 text-center text-lg lg:text-2xl">
    <a href="/" class="cursor-pointer font-bold hover:underline justify-center">
      COMPROMYSE
    </a>
    <div class="flex items-center gap-4 flex-wrap justify-center md:justify-left">
      <a href="/projects" class="hover:underline">
        [ PROJECTS ]
      </a>
      <a href="#" class="hover:underline">
        [ ABOUT ]
      </a>
    </div>
  </div>
</nav>
 |