noveria.org/layouts/partials/header.html
2025-02-27 20:37:24 +01:00

38 lines
2.6 KiB
HTML

<header>
<nav class="border-gray-200 px-4 lg:px-6 py-2.5 text-slate-200 bg-gray-900">
<div class="flex flex-wrap justify-between items-center mx-auto max-w-screen-xl h-10">
<a href="/" class="flex items-center">
<img src="/img/logo_sm_crop.png" class="mr-3 h-6 sm:h-9 logo" alt="Noveria Logo" />
</a>
<div class="flex items-center lg:order-2">
<button data-collapse-toggle="mobile-menu-2" type="button" class="inline-flex items-center p-2 ml-1 text-sm rounded-lg lg:hidden focus:outline-none focus:ring-2 text-gray-400 hover:bg-gray-700 focus:ring-gray-600" aria-controls="mobile-menu-2" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<svg class="w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z" clip-rule="evenodd"></path></svg>
<svg class="hidden w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg>
</button>
</div>
<div class="hidden justify-between items-center w-full lg:flex lg:w-auto lg:order-1 z-50 bg-gray-900 rounded lg:bg-transparent" id="mobile-menu-2">
<ul class="flex flex-col mt-4 font-medium lg:flex-row lg:space-x-8 lg:mt-0">
<li>
<a href="/" class="block py-2 pr-4 pl-3 lg:text-primary-700 lg:p-0 text-white">Home</a>
</li>
<li>
<a href="/about" class="block py-2 pr-4 pl-3 lg:text-primary-700 lg:p-0 text-white">About</a>
</li>
<li>
<a href="/team" class="block py-2 pr-4 pl-3 lg:text-primary-700 lg:p-0 text-white">Team</a>
</li>
<li>
<a href="/jobs" class="block py-2 pr-4 pl-3 lg:text-primary-700 lg:p-0 text-white">Jobs</a>
</li>
<li>
<a href="/blog" class="block py-2 pr-4 pl-3 lg:text-primary-700 lg:p-0 text-white">Blog</a>
</li>
<li>
<a href="#" class="block py-2 pr-4 pl-3 lg:text-primary-700 lg:p-0 text-white">Forum</a>
</li>
</ul>
</div>
</div>
</nav>
</header>