This commit is contained in:
vcoppe
2025-06-21 21:07:36 +02:00
parent f0230d4634
commit 1cc07901f6
803 changed files with 7937 additions and 6329 deletions

View File

@@ -2,35 +2,35 @@
import { Button } from '$lib/components/ui/button';
import Logo from '$lib/components/Logo.svelte';
import { getURLForLanguage } from '$lib/utils';
import { Home, Map, BookOpenText } from 'lucide-svelte';
import { _, locale } from '$lib/i18n';
import { Home, Map, BookOpenText } from '@lucide/svelte';
import { i18n } from '$lib/i18n.svelte';
</script>
<div class="grow px-12 my-12 flex flex-col items-center justify-center gap-6">
<p class="text-7xl font-black">404</p>
<p class="text-xl -mt-6">{$_('page_not_found')}</p>
<p class="text-xl -mt-6">{i18n._('page_not_found')}</p>
<Logo class="h-40 my-3 animate-spin" style="animation-duration: 20000ms" iconOnly={true} />
<div class="w-full flex flex-row flex-wrap gap-3 justify-center">
<Button
href={getURLForLanguage($locale, '/')}
href={getURLForLanguage(i18n.lang, '/')}
class="text-base w-1/4 min-w-fit rounded-full"
>
<Home size="18" class="mr-1.5" />
{$_('homepage.home')}
<Home size="18" />
{i18n._('homepage.home')}
</Button>
<Button
href={getURLForLanguage($locale, '/app')}
href={getURLForLanguage(i18n.lang, '/app')}
class="text-base w-1/4 min-w-fit rounded-full"
>
<Map size="18" class="mr-1.5" />
{$_('homepage.app')}
<Map size="18" />
{i18n._('homepage.app')}
</Button>
<Button
href={getURLForLanguage($locale, '/help')}
href={getURLForLanguage(i18n.lang, '/help')}
class="text-base w-1/4 min-w-fit rounded-full"
>
<BookOpenText size="18" class="mr-1.5" />
<span>{$_('menu.help')}</span>
<BookOpenText size="18" />
<span>{i18n._('menu.help')}</span>
</Button>
</div>
</div>