35 lines
953 B
Cheetah
35 lines
953 B
Cheetah
<section class="flex justify-center max-w-full mt-[3em] mb-[3em]">
|
|
<h1 class="
|
|
min-[400px]:px-[calc(10vw-0.5em)]
|
|
min-[400px]:py-[calc(8vw-0.5em)]
|
|
border-[1px] border-sidebar-border rounded-lg
|
|
bg-card
|
|
text-nowrap
|
|
text-center
|
|
">
|
|
Inventory++
|
|
</h1>
|
|
|
|
</section>
|
|
|
|
{{- if and .Identity.User.UserID (not .Identity.Account) }}
|
|
{{/* TODO: make account creation automatic as part of the user creation process */}}
|
|
<h2><a href="/ui/account-creation">New Account</a></h2>
|
|
{{- end }}
|
|
|
|
<section class="flex flex-col items-center max-w-full mt-[1em] mb-[1em] gap-y-[2em]">
|
|
<p class="text-lg text-center max-w-[50%]">
|
|
Synchronize inventory automatically!
|
|
</p>
|
|
|
|
<div class="border-button border-sidebar-border bg-card text-lg text-center max-w-[50%]">
|
|
<a href="/ui/login" class="block p-[1em] font-bold">
|
|
Create an Account
|
|
</a>
|
|
</div>
|
|
|
|
<p class="text-lg text-center max-w-[50%]">
|
|
...and start syncing your shops today!
|
|
</p>
|
|
</section>
|