import { Button } from "@/components/ui/button"; import { Settings2, Keyboard } from "lucide-react"; interface KeyboardShortcutsSectionProps { onOpenKeyboardMap: () => void; } export function KeyboardShortcutsSection({ onOpenKeyboardMap, }: KeyboardShortcutsSectionProps) { return (

Keyboard Shortcuts

Customize keyboard shortcuts for navigation and actions using the visual keyboard map.

{/* Centered message directing to keyboard map */}

Use the Visual Keyboard Map

Click the "View Keyboard Map" button above to customize your keyboard shortcuts. The visual interface shows all available keys and lets you easily edit shortcuts with single-modifier restrictions.

); }