2022-08-25 06:10:48 +02:00
|
|
|
<script lang="ts">
|
|
|
|
import { goto } from '$app/navigation';
|
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>
|
2022-08-25 06:10:48 +02:00
|
|
|
<button
|
2022-10-26 18:10:48 +02:00
|
|
|
class="border px-4 py-4 rounded-md bg-immich-primary dark:bg-immich-dark-primary dark:text-immich-dark-gray dark:border-immich-dark-gray hover:bg-immich-primary/75 text-white font-bold w-[200px]"
|
2023-02-15 13:42:41 +01:00
|
|
|
on:click={() => goto('/auth/register')}
|
2022-08-25 06:10:48 +02:00
|
|
|
>Getting Started
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</section>
|