2023-11-16 21:45:36 +00:00
|
|
|
<header>
|
2023-08-17 10:24:09 +00:00
|
|
|
<a
|
|
|
|
href="#main"
|
|
|
|
class="absolute left-0 -translate-y-full bg-black p-2 text-white transition-transform focus:transform-none"
|
|
|
|
>
|
|
|
|
<%= gettext("Skip to content") %>
|
|
|
|
</a>
|
2023-12-14 12:27:05 +00:00
|
|
|
<div class="flex h-14 items-center justify-between border-b border-slate-100 bg-violet-100 px-4 text-sm sm:px-6 lg:px-8">
|
|
|
|
<div class="my-auto leading-tight text-violet-700">
|
|
|
|
<p class="text-[10px]">codename</p>
|
|
|
|
<a
|
|
|
|
href="/"
|
|
|
|
class="bg-gradient-to-br from-violet-600 to-pink-600 bg-clip-text text-lg font-black text-transparent"
|
|
|
|
>
|
2023-11-16 21:45:36 +00:00
|
|
|
Prymn
|
2023-06-01 09:49:27 +00:00
|
|
|
</a>
|
2023-11-16 21:45:36 +00:00
|
|
|
<p class="inline text-xs">
|
|
|
|
v<%= Application.spec(:prymn, :vsn) %>
|
2023-06-01 09:49:27 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
2023-12-14 12:27:05 +00:00
|
|
|
<.dropdown position="right">
|
|
|
|
<:button variant="tertiary">
|
|
|
|
<.icon name="hero-user-solid" />
|
|
|
|
</:button>
|
|
|
|
<:item href={~p"/users/settings"}>Settings</:item>
|
|
|
|
<:item method="DELETE" href={~p"/auth/log_out"}>Log out</:item>
|
|
|
|
</.dropdown>
|
2023-06-01 09:49:27 +00:00
|
|
|
</div>
|
|
|
|
</header>
|
2023-12-14 12:27:05 +00:00
|
|
|
<main id="main" class="mt-10 px-4 sm:px-6 lg:px-10">
|
2023-11-16 21:45:36 +00:00
|
|
|
<div class="pb-20">
|
2023-06-01 09:49:27 +00:00
|
|
|
<.flash_group flash={@flash} />
|
|
|
|
<%= @inner_content %>
|
|
|
|
</div>
|
|
|
|
</main>
|