Neuaufbau des Repositories

This commit is contained in:
2026-04-13 14:01:19 +02:00
parent 4a7638d5e9
commit 35b5f39843
14 changed files with 494 additions and 13 deletions
+2 -3
View File
@@ -15,7 +15,6 @@ import {
SidebarMenuButton,
SidebarMenuItem,
} from '@/components/ui/sidebar';
import { dashboard } from '@/routes';
import type { NavItem } from '@/types';
const page = usePage();
@@ -36,7 +35,7 @@ const mainNavItems = computed<NavItem[]>(() => {
const items: NavItem[] = [
{
title: 'Dashboard',
href: dashboard(),
href: '/dashboard',
icon: LayoutGrid,
}
];
@@ -82,7 +81,7 @@ const footerNavItems = computed<NavItem[]>(() => {
<SidebarMenu>
<SidebarMenuItem>
<SidebarMenuButton size="lg" as-child>
<Link :href="dashboard()">
<Link href="/dashboard">
<AppLogo />
</Link>
</SidebarMenuButton>