2022-08-25 06:10:48 +02:00
|
|
|
<script lang="ts">
|
2023-07-01 06:50:47 +02: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-25 06:10:48 +02:00
|
|
|
</script>
|
|
|
|
|
2023-07-18 20:19:39 +02: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 06:50:47 +02:00
|
|
|
<ImmichLogo class="text-center" height="200" width="200" />
|
|
|
|
</div>
|
2023-07-18 20:19:39 +02:00
|
|
|
<h1 class="font-immich-title text-4xl font-bold text-immich-primary dark:text-immich-dark-primary">
|
2023-07-01 06:50:47 +02:00
|
|
|
Welcome to IMMICH Web
|
|
|
|
</h1>
|
|
|
|
<Button size="lg" rounded="lg" on:click={() => goto('/auth/register')}>
|
2023-07-18 20:19:39 +02:00
|
|
|
<span class="px-2 font-bold">Getting Started</span>
|
2023-07-01 06:50:47 +02:00
|
|
|
</Button>
|
|
|
|
</div>
|
2022-08-25 06:10:48 +02:00
|
|
|
</section>
|