& so it begins
This commit is contained in:
18
apps/main/src/routes/(main)/dashboard/+page.svelte
Normal file
18
apps/main/src/routes/(main)/dashboard/+page.svelte
Normal file
@@ -0,0 +1,18 @@
|
||||
<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-8">
|
||||
<div class="space-y-2">
|
||||
<h1 class="text-3xl font-bold tracking-tight">
|
||||
Dashboard Not Yet Implemented
|
||||
</h1>
|
||||
<p class="text-muted-foreground">
|
||||
This is where your implementation will go
|
||||
</p>
|
||||
</div>
|
||||
</MaxWidthWrapper>
|
||||
Reference in New Issue
Block a user