2022-08-25 06:10:48 +02:00
|
|
|
<script lang="ts">
|
|
|
|
import { goto } from '$app/navigation';
|
2023-04-07 18:45:00 +02:00
|
|
|
import Button from '$lib/components/elements/buttons/button.svelte';
|
2023-02-10 23:01:35 +01:00
|
|
|
import ImmichLogo from '$lib/components/shared-components/immich-logo.svelte';
|
2022-08-25 06:10:48 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<section class="h-screen w-screen flex place-items-center place-content-center">
|
|
|
|
<div class="flex flex-col place-items-center gap-8 text-center max-w-[350px]">
|
|
|
|
<div class="flex place-items-center place-content-center ">
|
2023-02-10 23:01:35 +01:00
|
|
|
<ImmichLogo class="text-center" height="200" width="200" />
|
2022-08-25 06:10:48 +02:00
|
|
|
</div>
|
2022-10-26 18:10:48 +02:00
|
|
|
<h1
|
|
|
|
class="text-4xl text-immich-primary dark:text-immich-dark-primary font-bold font-immich-title"
|
|
|
|
>
|
|
|
|
Welcome to IMMICH Web
|
|
|
|
</h1>
|
2023-04-07 18:45:00 +02:00
|
|
|
<Button size="lg" rounded="lg" on:click={() => goto('/auth/register')}>
|
|
|
|
<span class="font-bold px-2">Getting Started</span>
|
|
|
|
</Button>
|
2022-08-25 06:10:48 +02:00
|
|
|
</div>
|
|
|
|
</section>
|