aboutsummaryrefslogtreecommitdiffstats
path: root/apps/kit/src/routes/(main)/+layout.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'apps/kit/src/routes/(main)/+layout.svelte')
-rw-r--r--apps/kit/src/routes/(main)/+layout.svelte29
1 files changed, 0 insertions, 29 deletions
diff --git a/apps/kit/src/routes/(main)/+layout.svelte b/apps/kit/src/routes/(main)/+layout.svelte
deleted file mode 100644
index 1a870bb..0000000
--- a/apps/kit/src/routes/(main)/+layout.svelte
+++ /dev/null
@@ -1,29 +0,0 @@
-<script lang="ts">
- import "../../app.pcss";
- import { setLocale } from "$lib/i18n/i18n-svelte";
- import LocaleSwitcher from "$lib/components/locale-switcher.svelte";
- import { ExclamationTriangleIcon } from "$lib/components/icons";
- import type { LayoutData } from "./$types";
-
- let online = true;
- export let data: LayoutData;
- setLocale(data.locale);
-</script>
-
-<svelte:window bind:online />
-
-{#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" />
- </div>
- <div class="ml-3">
- <p class="text-sm text-yellow-700">You seem to be offline, please check your internet connection.</p>
- </div>
- </div>
- </div>
-{/if}
-
-<LocaleSwitcher />
-<slot />