mirror of
https://github.com/hyprwm/hyprland-website.git
synced 2024-11-17 19:05:59 +01:00
15 lines
272 B
Svelte
15 lines
272 B
Svelte
<script>
|
|
import Footer from '$lib/components/Footer.svelte'
|
|
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>
|
|
|
|
<Footer />
|
|
</div>
|