mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 05:46:46 +01:00
fba9e784fb
* fix: multiple improvements * pr feedback * optimize
21 lines
852 B
Svelte
21 lines
852 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';
|
|
</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 class="text-center" height="200" width="200" />
|
|
</div>
|
|
<h1 class="font-immich-title text-4xl font-bold text-immich-primary dark:text-immich-dark-primary">
|
|
Welcome to IMMICH Web
|
|
</h1>
|
|
<a href={AppRoute.AUTH_REGISTER}>
|
|
<Button size="lg" rounded="lg">
|
|
<span class="px-2 font-bold">Getting Started</span>
|
|
</Button>
|
|
</a>
|
|
</div>
|
|
</section>
|