Files
torsearch/templates/components/Header.html.twig
2025-04-20 12:55:14 -05:00

16 lines
690 B
Twig

<header {{ attributes }} class="bg-cyan-950">
<div class="px-4 sm:px-6 lg:px-8">
<div class="h-16 flex flex-row items-center justify-between">
<h1 class="text-3xl font-extrabold text-orange-500">Torsearch</h1>
<twig:SearchBar />
<div class="md:flex md:items-center md:gap-12">
<nav aria-label="Global" class="md:block">
<ul class="flex items-center gap-6 text-sm">
<twig:ux:icon name="fluent:alert-12-regular" width="30px" class="text-gray-950 bg-orange-500 rounded-full p-2"/>
</ul>
</nav>
</div>
</div>
</div>
</header>