diff --git a/src/components/MainContent.jsx b/src/components/MainContent.jsx
index 645e84d..09a210a 100644
--- a/src/components/MainContent.jsx
+++ b/src/components/MainContent.jsx
@@ -18,6 +18,8 @@ import CodeEditor from './CodeEditor';
import Shell from './Shell';
import GitPanel from './GitPanel';
import ErrorBoundary from './ErrorBoundary';
+import ClaudeLogo from './ClaudeLogo';
+import CursorLogo from './CursorLogo';
function MainContent({
selectedProject,
@@ -153,35 +155,46 @@ function MainContent({
)}
-
- {activeTab === 'chat' && selectedSession ? (
-
-
- {selectedSession.__provider === 'cursor' ? (selectedSession.name || 'Untitled Session') : (selectedSession.summary || 'New Session')}
-
-
- {selectedProject.displayName} • {selectedSession.id}
-
-
- ) : activeTab === 'chat' && !selectedSession ? (
-
-
- New Session
-
-
- {selectedProject.displayName}
-
-
- ) : (
-
-
- {activeTab === 'files' ? 'Project Files' : activeTab === 'git' ? 'Source Control' : 'Project'}
-
-
- {selectedProject.displayName}
-
+
+ {activeTab === 'chat' && selectedSession && (
+
+ {selectedSession.__provider === 'cursor' ? (
+
+ ) : (
+
+ )}
)}
+
+ {activeTab === 'chat' && selectedSession ? (
+
+
+ {selectedSession.__provider === 'cursor' ? (selectedSession.name || 'Untitled Session') : (selectedSession.summary || 'New Session')}
+
+
+ {selectedProject.displayName} • {selectedSession.id}
+
+
+ ) : activeTab === 'chat' && !selectedSession ? (
+
+
+ New Session
+
+
+ {selectedProject.displayName}
+
+
+ ) : (
+
+
+ {activeTab === 'files' ? 'Project Files' : activeTab === 'git' ? 'Source Control' : 'Project'}
+
+
+ {selectedProject.displayName}
+
+
+ )}
+