poex/lib/poex_web/controllers/page_html/home.html.heex

23 lines
631 B
Plaintext

<.flash_group flash={@flash} />
<div class="mx-auto max-w-2xl">
<div class="flex items-center justify-center bg-gray-100">
<div class="text-white text-center">
<h1 class="text-4xl font-semibold text-zinc-900">
Poex
</h1>
<p class="mt-4 text-lg text-zinc-600">
The pad for poets
</p>
<div class="mt-10">
<.link
href={~p"/pad/new"}
class="inline-block bg-zinc-900 text-white font-semibold px-6 py-3 rounded-lg hover:bg-zinc-700"
>
Begin
</.link>
</div>
</div>
</div>
</div>