mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
30 lines
1 KiB
Svelte
30 lines
1 KiB
Svelte
<script lang="ts">
|
|
import OnboardingCard from './onboarding-card.svelte';
|
|
import Button from '$lib/components/elements/buttons/button.svelte';
|
|
import { mdiArrowRight } from '@mdi/js';
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
|
import ImmichLogo from '$lib/components/shared-components/immich-logo.svelte';
|
|
import { user } from '$lib/stores/user.store';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
interface Props {
|
|
onDone: () => void;
|
|
}
|
|
|
|
let { onDone }: Props = $props();
|
|
</script>
|
|
|
|
<OnboardingCard>
|
|
<ImmichLogo noText width="75" />
|
|
<p class="font-medium text-6xl my-6 text-immich-primary dark:text-immich-dark-primary">
|
|
{$t('onboarding_welcome_user', { values: { user: $user.name } })}
|
|
</p>
|
|
<p class="text-3xl pb-6 font-light">{$t('onboarding_welcome_description')}</p>
|
|
|
|
<div class="w-full flex place-content-end">
|
|
<Button class="flex gap-2 place-content-center" onclick={() => onDone()}>
|
|
<p>{$t('theme')}</p>
|
|
<Icon path={mdiArrowRight} size="18" />
|
|
</Button>
|
|
</div>
|
|
</OnboardingCard>
|