22 lines
744 B
Plaintext
22 lines
744 B
Plaintext
<Layouts.app flash={@flash} current_scope={@current_scope}>
|
|
<section class={["flex min-h-[calc(100vh-4rem)] items-center justify-center px-6 text-center"]}>
|
|
<div class={["max-w-3xl"]}>
|
|
<p class={[
|
|
"text-2xl font-semibold tracking-tight text-blue-grey sm:text-4xl"
|
|
]}>
|
|
Hi, I am Dexi - the DEX interface from QPQ IaaS AG
|
|
</p>
|
|
<.link
|
|
:if={!@current_scope.user}
|
|
navigate={~p"/login"}
|
|
id="home-login"
|
|
class={[
|
|
"mt-8 inline-flex rounded-full bg-electric-cyan px-6 py-3 text-sm font-bold text-midnight transition hover:-translate-y-0.5 hover:bg-bright-cyan"
|
|
]}
|
|
>
|
|
Log in with your wallet
|
|
</.link>
|
|
</div>
|
|
</section>
|
|
</Layouts.app>
|