Add daisyui integration, remove Header and page components, and update layout structure
This commit is contained in:
12
apps/web/src/routes/(dashboard)/+layout.svelte
Normal file
12
apps/web/src/routes/(dashboard)/+layout.svelte
Normal file
@@ -0,0 +1,12 @@
|
||||
<script>
|
||||
const { children } = $props();
|
||||
</script>
|
||||
|
||||
<div class="max-w-[1600px w-full">
|
||||
<main
|
||||
id="container-central"
|
||||
class="m-3 rounded-xl shadow-sm overflow-y-auto p-4"
|
||||
>
|
||||
{@render children()}
|
||||
</main>
|
||||
</div>
|
||||
Reference in New Issue
Block a user