aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/routes/(main)/+layout.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'code/app/src/routes/(main)/+layout.svelte')
-rw-r--r--code/app/src/routes/(main)/+layout.svelte16
1 files changed, 10 insertions, 6 deletions
diff --git a/code/app/src/routes/(main)/+layout.svelte b/code/app/src/routes/(main)/+layout.svelte
index 2b96527..7662d6a 100644
--- a/code/app/src/routes/(main)/+layout.svelte
+++ b/code/app/src/routes/(main)/+layout.svelte
@@ -1,21 +1,25 @@
<script lang="ts">
import "../../app.pcss";
- import {setLocale} from "$i18n/i18n-svelte";
- import {ExclamationTriangleIcon} from "$components/icons";
- import type {LayoutData} from "./$types";
+ import { setLocale } from "$i18n/i18n-svelte";
+ import { ExclamationTriangleIcon } from "$components/icons";
+ import { page } from "$app/stores";
+ import type { LayoutData } from "./$types";
let online = true;
export let data: LayoutData;
setLocale(data.locale);
</script>
-<svelte:window bind:online/>
+<svelte:window bind:online />
+<svelte:head>
+ <title>{$page.data.title ? $page.data.title + " - Greatoffice" : "Greatoffice"}</title>
+</svelte:head>
{#if !online}
<div class="bg-yellow-50 relative z-50 p-4">
<div class="flex">
<div class="flex-shrink-0">
- <ExclamationTriangleIcon class="bg-yellow-50 text-yellow-500"/>
+ <ExclamationTriangleIcon class="bg-yellow-50 text-yellow-500" />
</div>
<div class="ml-3">
<p class="text-sm text-yellow-700">You seem to be offline, please check your internet connection.</p>
@@ -24,4 +28,4 @@
</div>
{/if}
-<slot/>
+<slot />