You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
365 B

<script>
import Construction from "$lib/Construction.svelte";
import Footer from "$lib/footer/Footer.svelte";
import Header from "$lib/header/Header.svelte";
import "../app.css";
</script>
<div class="bg-gray-100 dark:bg-gray-900 text-black dark:text-white">
<Construction />
<div class="min-h-screen">
<Header />
<slot />
</div>
<Footer />
</div>