mirror of
https://github.com/immich-app/immich.git
synced 2025-11-07 15:23:04 -05:00
* fix(deps): update typescript-projects * chore: update server lock file --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
18 lines
723 B
Svelte
18 lines
723 B
Svelte
<script lang="ts">
|
|
import { AppRoute } from '$lib/constants';
|
|
import { Heading, Button, Logo } from '@immich/ui';
|
|
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-10 text-center">
|
|
<div class="flex place-content-center place-items-center">
|
|
<Logo variant="icon" class="text-center" size="landing" />
|
|
</div>
|
|
<Heading size="giant" color="primary" tag="h1">{$t('welcome_to_immich')}</Heading>
|
|
<Button href={AppRoute.AUTH_REGISTER} size="giant" shape="round">
|
|
<span class="px-2 font-bold">{$t('getting_started')}</span>
|
|
</Button>
|
|
</div>
|
|
</section>
|