diff options
| author | Fuwn <[email protected]> | 2024-01-13 18:56:25 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-13 18:56:25 -0800 |
| commit | 6a1933178985e23825d8453449ca99bb0e5cfcb6 (patch) | |
| tree | 1c2b7919e9b57bb908a34593be10302542d45c60 /src/routes/+layout.svelte | |
| parent | refactor(data): move json to data (diff) | |
| download | due.moe-6a1933178985e23825d8453449ca99bb0e5cfcb6.tar.xz due.moe-6a1933178985e23825d8453449ca99bb0e5cfcb6.zip | |
refactor(home): move layout to home
Diffstat (limited to 'src/routes/+layout.svelte')
| -rw-r--r-- | src/routes/+layout.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 44a9de84..88f1d268 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -5,13 +5,13 @@ import userIdentity from '$stores/userIdentity'; import settings from '$stores/settings'; import { browser } from '$app/environment'; - import HeadTitle from '$lib/HeadTitle.svelte'; + import HeadTitle from '$lib/Home/HeadTitle.svelte'; import '../app.css'; import { readable, type Readable } from 'svelte/store'; import { navigating } from '$app/stores'; import Notifications from 'svelte-notifications'; import Notification from '$lib/Notification/Notification.svelte'; - import Root from '$lib/Root.svelte'; + import Root from '$lib/Home/Root.svelte'; export let data; |