15 lines
592 B
Plaintext
15 lines
592 B
Plaintext
<header class="flex header justify-between items-center" data-controller="timer">
|
|
<div class="flex flex-row h-full items-center">
|
|
<%= image_tag "svg/svg_logo.svg", class: "w-auto h-8 mr-4" %>
|
|
<%= link_to root_path do %>
|
|
<div class="flex h-full items-center tracking-[0.5rem]"><span class="text-logo-color">FARM</span>ITRY</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div data-timer-target="output" class="hidden lg:block"></div>
|
|
|
|
<button data-action="click->sidebar#toggle" class="block lg:hidden p-2 cursor-pointer">
|
|
<i class="fa-solid fa-bars text-2xl"></i>
|
|
</button>
|
|
</header>
|