mirror of
https://github.com/LukeHagar/immich.git
synced 2025-12-10 04:20:16 +00:00
* feat: custom url for shared links * feat: use a separate route and query param --------- Co-authored-by: Jason Rasmussen <jason@rasm.me>
15 lines
463 B
Svelte
15 lines
463 B
Svelte
<script lang="ts">
|
|
import { page } from '$app/state';
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>Oops! Error - Immich</title>
|
|
</svelte:head>
|
|
|
|
<section class="flex flex-col px-4 h-dvh w-dvw place-content-center place-items-center">
|
|
<h1 class="py-10 text-4xl text-immich-primary dark:text-immich-dark-primary">Page not found :/</h1>
|
|
{#if page.error?.message}
|
|
<h2 class="text-xl text-immich-fg dark:text-immich-dark-fg">{page.error.message}</h2>
|
|
{/if}
|
|
</section>
|