diff --git a/app/(dashboard)/layout.tsx b/app/(dashboard)/layout.tsx index 984805b..d3d28fc 100644 --- a/app/(dashboard)/layout.tsx +++ b/app/(dashboard)/layout.tsx @@ -4,6 +4,7 @@ import { Header } from '@/components/layout/Header'; import { Sidebar } from '@/components/layout/Sidebar'; import { useUIStore } from '@/stores/ui-store'; import { AuthGuard } from '@/components/providers/AuthGuard'; +import { SkipLink } from '@/components/ui/skip-link'; export default function DashboardLayout({ children, @@ -14,11 +15,13 @@ export default function DashboardLayout({ return ( +
setIsExpanded(!isExpanded)} + onKeyDown={(e) => { + if (e.key === 'Enter' || e.key === ' ') { + e.preventDefault(); + setIsExpanded(!isExpanded); + } + }} > - +