exmr/lib/exmr_web/components/layouts/app.html.heex

19 lines
564 B
Text
Raw Normal View History

2024-11-14 23:33:29 +02:00
<header class="px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between border-b border-zinc-100 py-3 text-sm">
<div class="flex items-center gap-4">
<a href="/">
<img src={~p"/images/logo.svg"} width="36" />
</a>
<p class="bg-brand/5 text-brand rounded-full px-2 font-medium leading-6">
2024-12-12 18:52:36 +02:00
v{Application.spec(:exmr, :vsn)}
2024-11-14 23:33:29 +02:00
</p>
</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} />
2024-12-12 18:52:36 +02:00
{@inner_content}
2024-11-14 23:33:29 +02:00
</div>
</main>