File size: 511 Bytes
88211d3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <div class="min-h-screen w-full bg-white dark:bg-gray-900">
<div class="flex justify-center pt-12 sm:pt-20">
<a href="/">
<Layout.logo />
</a>
</div>
<div class="max-w-md mx-auto mt-10 sm:mt-16 px-4 flex flex-col gap-y-2 text-center dark:text-gray-300">
<h1 class="text-lg sm:text-xl font-semibold">
{@heading}
</h1>
<p :if={assigns[:subtitle]} class="text-base text-gray-500 dark:text-gray-400 text-pretty">
{@subtitle}
</p>
</div>
{@inner_content}
</div>
|