chiya/lib/chiya_web/components/layouts/public.html.heex
2023-03-09 21:45:17 +01:00

17 lines
576 B
Text

<header class="px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between border-b border-zinc-100 py-3">
<div class="flex items-center gap-4">
<a href="/">Chiya</a>
<p class="rounded-full bg-brand/5 px-2 text-[0.8125rem] font-medium leading-6 text-brand">
v<%= Application.spec(:chiya, :vsn) %>
</p>
</div>
<div class="flex items-center gap-4"></div>
</div>
</header>
<main class="px-4 py-20 sm:px-6 lg:px-8">
<div class="mx-auto max-w-2xl">
<.flash_group flash={@flash} />
<%= @inner_content %>
</div>
</main>