9 lines
258 B
Svelte
9 lines
258 B
Svelte
<script lang="ts">
|
|
import InstallationInstructions from '$lib/InstallationInstructions.svelte';
|
|
import Header from '$lib/Header.svelte';
|
|
import Footer from '$lib/Footer.svelte';
|
|
</script>
|
|
|
|
<Header />
|
|
<InstallationInstructions />
|
|
<Footer bottom /> |