'use client'; import { useKeyboardShortcutsStore } from '@/lib/stores/use-keyboard-shortcuts-store'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import { Switch } from '@/components/ui/switch'; import { Label } from '@/components/ui/label'; import { NotificationPrefs } from '@/components/notifications/notification-prefs'; export function SettingsShortcuts() { const { enabled, shortcuts, setEnabled, resetShortcuts } = useKeyboardShortcutsStore(); return ( Keyboard Shortcuts Customize keyboard shortcuts for quick navigation and actions. {/* Enable/disable all */}

Turn off all keyboard shortcuts globally

{/* Shortcuts list */}
{shortcuts.map((shortcut) => (

{shortcut.description}

{shortcut.action}

{shortcut.key}
))}
{/* Reset button */} {/* Notification Preferences */}

Notification Preferences

Choose which events trigger in-app notifications.

); }