22 lines
600 B
Svelte
22 lines
600 B
Svelte
<script lang="ts">
|
|
import Footer from '$lib/common/framework/ui/Footer.svelte';
|
|
import Navbar from '$lib/common/framework/ui/Navbar.svelte';
|
|
import GoogleAnalytics from '$lib/common/framework/ui/GoogleAnalytics.svelte';
|
|
import '../app.css';
|
|
import '@fortawesome/fontawesome-free/css/all.min.css';
|
|
import { Toaster } from '$lib/common/framework/components/ui/sonner';
|
|
</script>
|
|
|
|
<GoogleAnalytics />
|
|
<svelte:head>
|
|
<meta name="app-version" content={App.__VERSION__} />
|
|
</svelte:head>
|
|
<div class="min-h-screen">
|
|
<Toaster theme="light" />
|
|
<Navbar />
|
|
<main>
|
|
<slot />
|
|
</main>
|
|
</div>
|
|
<Footer />
|