blog/frontend/src/routes/+layout.svelte
SquidSpirit eb4b2f4d6a
Some checks failed
PR Title Check / pr-title-check (pull_request) Successful in 13s
Frontend CI / build (push) Failing after 44s
BLOG-58 refactor: remove nextjs code
2025-07-23 05:19:36 +08:00

16 lines
374 B
Svelte

<script>
import Footer from '$lib/common/framework/ui/Footer.svelte';
import Navbar from '$lib/common/framework/ui/Navbar.svelte';
import '../app.css';
import '@fortawesome/fontawesome-free/css/all.min.css';
</script>
<svelte:head>
<meta name="app-version" content={App.__VERSION__} />
</svelte:head>
<div class="min-h-screen">
<Navbar />
<slot />
</div>
<Footer />