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>
12 lines
253 B
TypeScript
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 />;
|
|
}
|