diff --git a/src/pages/Project.tsx b/src/pages/Project.tsx
index bf8f37e..241f883 100644
--- a/src/pages/Project.tsx
+++ b/src/pages/Project.tsx
@@ -104,7 +104,68 @@ export function ProjectPage() {
className="w-4 h-4 rounded"
style={{ backgroundColor: project.color }}
/>
-
{project.name}
+ {isEditing ? (
+
setEditName(e.target.value)}
+ onBlur={handleSaveRename}
+ onKeyDown={(e) => {
+ if (e.key === 'Enter') handleSaveRename();
+ if (e.key === 'Escape') setIsEditing(false);
+ }}
+ className="text-2xl font-bold text-gray-900 border-b-2 border-blue-400 outline-none bg-transparent"
+ />
+ ) : (
+
+ {project.name}
+
+ )}
+ {!isEditing && !project.isInbox && (
+
+
+ {showDeleteConfirm ? (
+
+
+
+ Delete?
+
+
+
+
+ ) : (
+
+ )}
+
+ )}