feat: add command palette with cross-board search and actions

This commit is contained in:
Your Name
2026-02-15 19:12:49 +02:00
parent b527d441e3
commit 5b3bf2b058
5 changed files with 283 additions and 4 deletions

View File

@@ -3,6 +3,7 @@ import { useAppStore } from "@/stores/app-store";
import { AppShell } from "@/components/layout/AppShell";
import { BoardList } from "@/components/boards/BoardList";
import { BoardView } from "@/components/board/BoardView";
import { CommandPalette } from "@/components/command-palette/CommandPalette";
export default function App() {
const initialized = useAppStore((s) => s.initialized);
@@ -24,8 +25,11 @@ export default function App() {
}
return (
<AppShell>
{view.type === "board-list" ? <BoardList /> : <BoardView />}
</AppShell>
<>
<AppShell>
{view.type === "board-list" ? <BoardList /> : <BoardView />}
</AppShell>
<CommandPalette onOpenSettings={() => {}} />
</>
);
}