12 lines
341 B
Svelte
12 lines
341 B
Svelte
<script lang="ts">
|
|
import MaxWidthWrapper from "$lib/components/molecules/max-width-wrapper.svelte";
|
|
import { mainNavTree } from "$lib/core/constants";
|
|
import { breadcrumbs } from "$lib/global.stores";
|
|
|
|
breadcrumbs.set([mainNavTree[0]]);
|
|
</script>
|
|
|
|
<MaxWidthWrapper cls="space-y-4">
|
|
<span>dunno</span>
|
|
</MaxWidthWrapper>
|