- {/* Search and Add Member Section */}
-
-
{/* Members List Section */}
@@ -763,158 +756,146 @@ const ProjectDetailPage = () => {
-
-
- {/* Discussions Header */}
-
-
-
- Discussions{" "}
- (W.I.P)
-
-
-
-
- {/* Comment Form */}
-
- {showCommentForm ? (
-
- ) : (
-
-
-
-
- Add your comments here
-
-
-
-
-
-
-
-
- )}
-
- {/* Discussion Posts */}
-
- {discussions.length > 0 ? (
- discussions.map((discussion) => (
-
-
-
- {replyingTo === discussion.id && (
-
-
-
- )}
-
- {discussion.replies &&
- discussion.replies.map((reply) => (
-
-
-
- {replyingTo === reply.id && (
-
-
-
- )}
-
- ))}
-
- ))
- ) : (
-
- No discussions yet. Start the conversation!
-
- )}
-
-
-
-
-
-
+
+ {project.owner === userUuid ? (
+
+
+
+
+ 🤖 AI Rate My Project 🤖
+
+
+ Let AI rate your project and give feedback.
+
+
+
+
+
+
+
+
+ {aiFeedbackLoading && (
+
+ Rating...
+
+ )}
+
+ {!aiFeedbackLoading && AI_response && (
+
+ {AI_response}
+
+ )}
+
+
+
+
+ ) : (
+
+
+
+
+ 🤖 AI Match Score 🤖
+
+
+ Let AI rate how good of a fit you would be for this
+ project based on your profile.
+
+
+
+
+
+
+
+
+ {aiFeedbackLoading && (
+
+ Rating...
+
+ )}
+
+ {!aiFeedbackLoading && AI_response && (
+
+ {AI_response}
+
+ )}
+
+
+
+
+ )}
+ {project.owner === userUuid &&
}