2022-08-24 21:10:48 -07:00
|
|
|
<script lang="ts">
|
2023-07-01 00:50:47 -04:00
|
|
|
import { goto } from '$app/navigation';
|
|
|
|
import Button from '$lib/components/elements/buttons/button.svelte';
|
|
|
|
import ImmichLogo from '$lib/components/shared-components/immich-logo.svelte';
|
2022-08-24 21:10:48 -07:00
|
|
|
</script>
|
|
|
|
|
2023-07-18 13:19:39 -05:00
|
|
|
<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">
|
2023-07-01 00:50:47 -04:00
|
|
|
<ImmichLogo class="text-center" height="200" width="200" />
|
|
|
|
</div>
|
2023-07-18 13:19:39 -05:00
|
|
|
<h1 class="font-immich-title text-4xl font-bold text-immich-primary dark:text-immich-dark-primary">
|
2023-07-01 00:50:47 -04:00
|
|
|
Welcome to IMMICH Web
|
|
|
|
</h1>
|
|
|
|
<Button size="lg" rounded="lg" on:click={() => goto('/auth/register')}>
|
2023-07-18 13:19:39 -05:00
|
|
|
<span class="px-2 font-bold">Getting Started</span>
|
2023-07-01 00:50:47 -04:00
|
|
|
</Button>
|
|
|
|
</div>
|
2022-08-24 21:10:48 -07:00
|
|
|
</section>
|