mirror of
https://github.com/immich-app/immich.git
synced 2024-12-31 00:43:56 -05:00
wip: update
This commit is contained in:
parent
677fbca7b5
commit
c9e03003c0
1 changed files with 6 additions and 3 deletions
|
@ -1,11 +1,14 @@
|
|||
<script lang="ts">
|
||||
import UserPageLayout from '$lib/components/layouts/user-page-layout.svelte';
|
||||
import type { PageData } from './$types';
|
||||
import UtilitiesMenu from '$lib/components/utilities-page/utilities-menu.svelte';
|
||||
|
||||
export let data: PageData;
|
||||
interface Props {
|
||||
data: PageData;
|
||||
}
|
||||
|
||||
let { data }: Props = $props();
|
||||
</script>
|
||||
|
||||
<UserPageLayout title={data.meta.title}>
|
||||
<div class="w-full max-w-xl m-auto"></div>
|
||||
<div class="w-full h-full bg-gray-50 dark:bg-immich-dark-gray rounded-xl p-6">hello</div>
|
||||
</UserPageLayout>
|
||||
|
|
Loading…
Reference in a new issue