25 lines
646 B
HTML
25 lines
646 B
HTML
<nav class="flex bg-darkest w-full flex-row items-center mb-9">
|
|
<span class="m-4 flex flex-column items-center">
|
|
<a href="/">
|
|
<img
|
|
class="size-16 rounded-md"
|
|
src="https://forgeflux.org/logo-thumbnail.png"
|
|
alt="Go to home"
|
|
/>
|
|
</a>
|
|
<p class="text-lightest text-3xl ml-3">ForgeFlux</p>
|
|
</span>
|
|
<form
|
|
class="grow m-4 bg-green-300 flex flex-row rounded-md"
|
|
action="/search"
|
|
method="get"
|
|
>
|
|
<input
|
|
type="text"
|
|
class="w-full rounded-md size-8 text-start p-4"
|
|
name="q"
|
|
id="q"
|
|
placeholder="Search for persons, repositories, etc."
|
|
/>
|
|
</form>
|
|
</nav>
|