diff --git a/daily-thought-frontend/src/pages/feed.tsx b/daily-thought-frontend/src/pages/feed.tsx
index 8cf8097152078cf5fd116ef4d3c38ea74a92b956..8928b02dba9658417255a53ef852e3cb0a20ee87 100644
--- a/daily-thought-frontend/src/pages/feed.tsx
+++ b/daily-thought-frontend/src/pages/feed.tsx
@@ -1,4 +1,5 @@
 import NavBar from "@/components/navigation/NavBar";
+import Post from "@/components/post/Post";
 import Question from "@/components/question/Question";
 
 const user = {
@@ -17,8 +18,15 @@ const Feed = () => {
     return(
       <>
         <NavBar user={user} />
-        <div className="flex w-full justify-center">
-          <Question />
+        {/* <Question /> */}
+        <div className="flex w-full justify-center flex-col items-center mx-auto max-w-4xl p-3 sm:px-6 lg:px-8 border-x">
+        
+          <p className="text-pink-400">Your Feed</p>
+
+          <Post post={{User: user, Content: "This is my post"}}/>
+          <Post post={{User: user, Content: "This is my post"}}/>
+          <Post post={{User: user, Content: "This is my post"}}/>
+          <Post post={{User: user, Content: "This is my post"}}/>
 
         </div>
       </>