mirror of
https://github.com/BradNut/personal-website-sveltekit
synced 2025-09-08 23:20:18 +00:00
12 lines
221 B
Svelte
12 lines
221 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import '../app.postcss';
|
||
|
|
import Header from '$lib/components/header/index.svelte';
|
||
|
|
import Footer from '$lib/components/footer/index.svelte';
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<Header />
|
||
|
|
<main>
|
||
|
|
<slot />
|
||
|
|
</main>
|
||
|
|
<Footer />
|