feat: login redirect route for AL [just in case]
Some checks failed
Check / check (push) Has been cancelled

This commit is contained in:
ThaUnknown 2025-06-17 22:24:16 +02:00
parent 56a1cfbc98
commit 0a2fbfec45
No known key found for this signature in database
2 changed files with 19 additions and 1 deletions

View file

@ -1,6 +1,6 @@
{
"name": "ui",
"version": "6.3.67",
"version": "6.3.68",
"license": "BUSL-1.1",
"private": true,
"packageManager": "pnpm@9.14.4",

View file

@ -0,0 +1,18 @@
<script lang='ts'>
import { Separator } from '$lib/components/ui/separator'
</script>
<div class='w-full h-full flex flex-col grow items-center justify-center gap-9'>
<div class='overflow-x-hidden overflow-y-scroll relative flex justify-center items-center text-white px-15 w-full font-light'>
<div class='w-96 sm:!hidden justify-center items-center flex-col flex'>
<div class='text-6xl'>Redirecting...</div>
<Separator class='my-6 w-40' />
<div class='text-xl text-wrap max-w-full'>This should take no more than a second.</div>
</div>
<div class='max-w-4xl w-full hidden justify-center items-center sm:!flex'>
<div class='text-6xl'>Redirecting...</div>
<Separator class='mx-6 h-20' orientation='vertical' />
<div class='text-xl text-wrap max-w-full'>This should take no more than a second.</div>
</div>
</div>
</div>