From bc87f656bf8f930bfa511bb67946de296cdd61b2 Mon Sep 17 00:00:00 2001 From: Matt Kirby <MattJKirby@outlook.com> Date: Tue, 14 Mar 2023 21:37:07 +0000 Subject: [PATCH] test posts --- daily-thought-frontend/src/pages/feed.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/daily-thought-frontend/src/pages/feed.tsx b/daily-thought-frontend/src/pages/feed.tsx index 8cf80971..8928b02d 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> </> -- GitLab