diff options
Diffstat (limited to 'client/src/routes/(app)/+layout.svelte')
| -rw-r--r-- | client/src/routes/(app)/+layout.svelte | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/client/src/routes/(app)/+layout.svelte b/client/src/routes/(app)/+layout.svelte new file mode 100644 index 0000000..47dc736 --- /dev/null +++ b/client/src/routes/(app)/+layout.svelte @@ -0,0 +1,12 @@ +<script lang="ts"> + let { children } = $props(); +</script> + +<h1>eyeballs</h1> + +<nav> + <a href="/">Dashboard</a> + <a href="/settings">Settings</a> +</nav> + +{@render children()} |
