dow-prod-tracker/src/components/lazy-command-palette.tsx
Leivur R. Djurhuus f4e6da9210 Add performance optimizations and accessibility improvements
Dynamic imports for heavy components (Kanban, Gantt, CommandPalette),
skip-to-content link, ARIA landmarks/labels on sidebar, breadcrumbs,
topbar notifications, kanban board, gantt timeline, and pipeline
progress. Focus-visible ring styles for keyboard navigation.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-28 22:01:40 -06:00

12 lines
253 B
TypeScript

"use client";
import dynamic from "next/dynamic";
const CommandPalette = dynamic(
() => import("@/components/command-palette").then((m) => m.CommandPalette),
{ ssr: false }
);
export function LazyCommandPalette() {
return <CommandPalette />;
}