mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-27 17:41:21 +00:00
45 lines
1.1 KiB
Svelte
45 lines
1.1 KiB
Svelte
<script lang="ts">
|
|
import { dev } from '$app/environment';
|
|
import { Metadata, SiteFooter, SiteHeader, TailwindIndicator } from '$lib/components/site';
|
|
import '../styles/globals.css';
|
|
import { ModeWatcher } from 'mode-watcher';
|
|
import { fly } from 'svelte/transition';
|
|
import { inject } from '@vercel/analytics';
|
|
import { webVitals } from '$lib/vitals';
|
|
import { browser } from '$app/environment';
|
|
import { page } from '$app/stores';
|
|
|
|
inject({ mode: dev ? 'development' : 'production' });
|
|
|
|
let analyticsId = import.meta.env.VERCEL_ANALYTICS_ID;
|
|
|
|
$: if (browser && analyticsId) {
|
|
webVitals({
|
|
path: $page.url.pathname,
|
|
params: $page.params,
|
|
analyticsId,
|
|
debug: false
|
|
});
|
|
}
|
|
|
|
export let data;
|
|
</script>
|
|
|
|
<ModeWatcher />
|
|
|
|
<Metadata />
|
|
|
|
<div class="relative flex min-h-screen flex-col" id="page">
|
|
<SiteHeader />
|
|
<main class="mb-4 flex-1">
|
|
{#key data.url}
|
|
<div in:fly={{ x: -200, duration: 200, delay: 200 }} out:fly={{ x: 200, duration: 200 }}>
|
|
<slot />
|
|
</div>
|
|
{/key}
|
|
</main>
|
|
<SiteFooter />
|
|
{#if dev}
|
|
<TailwindIndicator />
|
|
{/if}
|
|
</div>
|