diff --git a/src/renderer/components/EmptyProjectView.tsx b/src/renderer/components/EmptyProjectView.tsx
new file mode 100644
index 0000000..7c0c439
--- /dev/null
+++ b/src/renderer/components/EmptyProjectView.tsx
@@ -0,0 +1,88 @@
+interface EmptyProjectViewProps {
+ projectName: string
+ onNewThread: () => void
+ onOpenSettings: () => void
+}
+
+export function EmptyProjectView({ projectName, onNewThread, onOpenSettings }: EmptyProjectViewProps) {
+ return (
+
+
+
+ Get started with {projectName}
+
+
+ Start by creating your first conversation thread, or configure an AI provider in settings.
+
+
+
+ {/* Card 1 - Start a Conversation */}
+
+
+
+
+ Start a Conversation
+
+
+ Create a thread to discuss architecture, requirements, or design decisions with AI
+
+
+
+
+
+ {/* Card 2 - Configure AI Provider */}
+
+
+
+
+ Configure AI Provider
+
+
+ Connect an AI provider like OpenAI, Anthropic, or Google to enable AI-assisted conversations
+
+
+
+
+
+
+
+ )
+}