Migrate from previous project with updated dependencies ready for March 2025
This commit is contained in:
17
src/routes/+layout.svelte
Normal file
17
src/routes/+layout.svelte
Normal file
@@ -0,0 +1,17 @@
|
||||
<script>
|
||||
import '../app.css';
|
||||
import Navbar from 'components/NavBar.svelte';
|
||||
import Footer from 'components/Footer.svelte';
|
||||
|
||||
let { children } = $props();
|
||||
</script>
|
||||
|
||||
<Navbar />
|
||||
<div class="h-screen bg-ecsess-800">
|
||||
{@render children()}
|
||||
<Footer />
|
||||
</div>
|
||||
|
||||
<style>
|
||||
@reference tailwindcss;
|
||||
</style>
|
||||
Reference in New Issue
Block a user