akkounts/app/components/header_with_tabs_component.html.erb
Râu Cao 462dd24da3
All checks were successful
continuous-integration/drone/push Build is passing
WIP contribution nav
2023-06-12 14:32:59 +02:00

13 lines
407 B
Plaintext

<header class="py-10">
<div class="max-w-6xl md:flex md:gap-x-10 mx-auto px-4 sm:px-6 lg:px-8">
<% if @title.present? %>
<h1 class="text-3xl font-bold text-white">
<%= @title %>
</h1>
<% end %>
<nav class="md:grow flex gap-x-4 <%= @title.present? ? "justify-end" : "justify-start" %>" aria-label="Tabs">
<%= render partial: @tabnav_partial %>
</nav>
</div>
</header>