+ {/* Header with project info */}
+
+
+
{project.name}
+
+ Current phase: {project.current_phase}
+
+
+
+
+
+ {/* Phase Navigator */}
+
+
+
+
+
+
+ {/* Health + Recommendations row */}
+
+
+ {/* Backlog Board - full width */}
+
+
+ )
+}
diff --git a/src/components/project/index.ts b/src/components/project/index.ts
index 27ecde2..eb26afe 100644
--- a/src/components/project/index.ts
+++ b/src/components/project/index.ts
@@ -2,3 +2,4 @@ export { PhaseNavigator } from './phase-navigator'
export { HealthWidget } from './health-widget'
export { BacklogBoard } from './backlog-board'
export { RecommendationsWidget } from './recommendations-widget'
+export { DesignThinkingDashboard } from './design-thinking-dashboard'
diff --git a/src/components/ui/skeleton.tsx b/src/components/ui/skeleton.tsx
new file mode 100644
index 0000000..c23a30d
--- /dev/null
+++ b/src/components/ui/skeleton.tsx
@@ -0,0 +1,15 @@
+import { cn } from '@/lib/utils'
+
+function Skeleton({
+ className,
+ ...props
+}: React.HTMLAttributes