Index: backend/controllers/forumController.js
===================================================================
--- backend/controllers/forumController.js	(revision fd01fe5b63ad1c4dfb42ad8e87e10d1239a553e3)
+++ backend/controllers/forumController.js	(revision 1a3b8e3957c50a30904799ddac157619c7c277d5)
@@ -48,15 +48,10 @@
         try {
           const aiResponse = await analyzePostContent(post.title, post.content);
-          console.log(aiResponse);
-          if (aiResponse.aiResponse === 'APPROPRIATE') {
-            console.log('AI analysis passed');
-          } else if (aiResponse.aiResponse === 'INAPPROPRIATE') {
-            console.log('AI analysis failed:', aiResponse.reason);
+          if (aiResponse.aiResponse === 'INAPPROPRIATE') {
+            console.log('AI analysis says INAPPROPRIATE:', aiResponse.reason);
             return res.status(400).json({
               error: 'Content is not appropriate for the forum',
             });
-          } else {
-            console.log('AI analysis inconclusive:', aiResponse.reason);
-          }
+          } 
         } catch (error) {
           console.error('AI analysis error:', error);
Index: client/src/Dashboard/components/Forum.jsx
===================================================================
--- client/src/Dashboard/components/Forum.jsx	(revision fd01fe5b63ad1c4dfb42ad8e87e10d1239a553e3)
+++ client/src/Dashboard/components/Forum.jsx	(revision 1a3b8e3957c50a30904799ddac157619c7c277d5)
@@ -1,7 +1,7 @@
-import React, { useState, useEffect } from 'react';
-import { useNavigate } from 'react-router-dom';
-import commentIcon from '../../assets/images/comment.svg';
-import trashIcon from '../../assets/images/delete.svg'; // Add this import
-import Navbar from './Navbar';
+import React, { useState, useEffect } from "react";
+import { useNavigate } from "react-router-dom";
+import commentIcon from "../../assets/images/comment.svg";
+import trashIcon from "../../assets/images/delete.svg"; // Add this import
+import Navbar from "./Navbar";
 const Forum = () => {
   const navigate = useNavigate();
@@ -10,5 +10,5 @@
   const [hasMore, setHasMore] = useState(true);
   const postsPerPage = 5;
-  const user = JSON.parse(localStorage.getItem('user'));
+  const user = JSON.parse(localStorage.getItem("user"));
 
   useEffect(() => {
@@ -27,5 +27,5 @@
       if (page === 0) {
         setPosts(data);
-        console.log('Fetched posts:', data);
+        console.log("Fetched posts:", data);
       } else {
         setPosts((prevPosts) => [...prevPosts, ...data]);
@@ -35,5 +35,5 @@
       }
     } catch (error) {
-      console.error('Error fetching forum posts:', error);
+      console.error("Error fetching forum posts:", error);
     }
   };
@@ -42,7 +42,7 @@
     try {
       const response = await fetch(`/forum/posts/${postId}`, {
-        method: 'DELETE',
+        method: "DELETE",
         headers: {
-          'Content-Type': 'application/json',
+          "Content-Type": "application/json",
         },
       });
@@ -51,7 +51,7 @@
       }
       setPosts((prevPosts) => prevPosts.filter((post) => post.id !== postId));
-      console.log('Post deleted successfully');
+      console.log("Post deleted successfully");
     } catch (error) {
-      console.error('Error deleting post:', error);
+      console.error("Error deleting post:", error);
     }
   };
@@ -70,5 +70,5 @@
         {/* Forum Posts */}
         <div className="flex-1 ml-8">
-          <h1 className="text-3xl font-bold mb-4">Forum Posts</h1>
+          <h1 className="text-4xl font-bold mb-10">Forum Posts</h1>
           <div className="space-y-4" w-300>
             {posts.map((post) => (
@@ -86,5 +86,5 @@
                       if (
                         window.confirm(
-                          'Are you sure you want to delete this post?'
+                          "Are you sure you want to delete this post?"
                         )
                       ) {
@@ -101,5 +101,5 @@
                     className="text-3xl font-semibold mb-2 cursor-pointer hover:underline"
                     onClick={() => {
-                      console.log('Post clicked:', post);
+                      console.log("Post clicked:", post);
                       navigate(`/dashboard/forum-detail/${post.id}`, {
                         state: { post },
@@ -112,10 +112,10 @@
 
                 <p className="text-m text-gray-500">
-                  By {post.authorName},{' '}
-                  <span>{post.dateCreated.split('T')[0]}</span>
+                  By {post.authorName},{" "}
+                  <span>{post.dateCreated.split("T")[0]}</span>
                 </p>
                 <p className="mt-2 text-gray-400 text-xl">
                   {post.content && post.content.length > 300
-                    ? post.content.slice(0, 300) + '...'
+                    ? post.content.slice(0, 300) + "..."
                     : post.content}
                 </p>
@@ -153,5 +153,5 @@
             <button
               onClick={() => {
-                navigate('/dashboard/create-post');
+                navigate("/dashboard/create-post");
               }}
               className="cursor-pointer px-6 py-3 bg-yellow-500 text-black rounded hover:bg-yellow-600"
Index: client/src/Dashboard/components/ManagePosts.jsx
===================================================================
--- client/src/Dashboard/components/ManagePosts.jsx	(revision fd01fe5b63ad1c4dfb42ad8e87e10d1239a553e3)
+++ client/src/Dashboard/components/ManagePosts.jsx	(revision 1a3b8e3957c50a30904799ddac157619c7c277d5)
@@ -100,5 +100,5 @@
       <div className="flex flex-col md:flex-row gap-6 p-6 h-full overflow-y-auto w-full">
         <div className="flex-1 ml-8">
-          <h1 className="text-3xl font-bold mb-4">Posts that need approval</h1>
+          <h1 className="text-4xl font-bold mb-10">Posts that need approval</h1>
           <div className="space-y-4" w-300>
             {posts.map((post) => (
