hyprland-website/src/routes/+layout.svelte

16 lines
272 B
Svelte
Raw Normal View History

2023-07-10 10:15:17 +02:00
<script>
2023-07-22 20:44:24 +02:00
import Footer from '$lib/components/Footer.svelte'
2023-07-10 10:15:17 +02:00
import Navbar from './Navbar.svelte'
import './styles.css'
</script>
<div class="flex flex-col min-h-screen">
<Navbar />
<main class="mx-auto w-full flex flex-col">
<slot />
</main>
2023-07-22 20:44:24 +02:00
<Footer />
2023-07-10 10:15:17 +02:00
</div>