font
This commit is contained in:
parent
4aaacde3df
commit
05faa76d7d
3 changed files with 10 additions and 5 deletions
|
|
@ -1,9 +1,10 @@
|
|||
<script lang="ts">
|
||||
import { goto } from '$app/navigation';
|
||||
import Loader from '$lib/components/Loader.svelte';
|
||||
|
||||
$effect(() => {
|
||||
const id = setTimeout(() => {
|
||||
window.location.href = '/app';
|
||||
goto('/app');
|
||||
}, 1500);
|
||||
return () => {
|
||||
clearTimeout(id);
|
||||
|
|
@ -21,6 +22,6 @@
|
|||
@apply flex h-screen w-screen flex-col items-center justify-center gap-6 bg-slate-100;
|
||||
}
|
||||
.site-loader h1 {
|
||||
@apply text-4xl;
|
||||
@apply font-display text-4xl;
|
||||
}
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue