mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
15 lines
330 B
Svelte
15 lines
330 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import LeftNav from '$components/LeftNav.svelte'
|
||
|
|
import type { Route } from '$lib/types'
|
||
|
|
|
||
|
|
const routes: Route[] = [
|
||
|
|
{ href: '/settings/profile', label: 'Profile' },
|
||
|
|
{ href: '/settings/security', label: 'Security' },
|
||
|
|
]
|
||
|
|
|
||
|
|
let { children } = $props()
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<LeftNav {routes}>
|
||
|
|
{@render children()}
|
||
|
|
</LeftNav>
|