mirror of
https://github.com/immich-app/immich.git
synced 2025-11-17 03:53:16 -05:00
19 lines
853 B
Svelte
19 lines
853 B
Svelte
<script lang="ts">
|
|
import Button from '$lib/components/elements/buttons/button.svelte';
|
|
import ImmichLogo from '$lib/components/shared-components/immich-logo.svelte';
|
|
import { AppRoute } from '$lib/constants';
|
|
import { t } from 'svelte-i18n';
|
|
</script>
|
|
|
|
<section class="flex h-screen w-screen place-content-center place-items-center">
|
|
<div class="flex max-w-[350px] flex-col place-items-center gap-8 text-center">
|
|
<div class="flex place-content-center place-items-center">
|
|
<ImmichLogo noText class="text-center" height="200" width="200" />
|
|
</div>
|
|
<h1 class="text-4xl font-bold text-immich-primary dark:text-immich-dark-primary">{$t('welcome_to_immich')}</h1>
|
|
<Button href={AppRoute.AUTH_REGISTER} size="lg" rounded="lg">
|
|
<span class="px-2 font-bold">{$t('getting_started')}</span>
|
|
</Button>
|
|
</div>
|
|
</section>
|