Skip to content
Snippets Groups Projects
Commit bc87f656 authored by Matt Kirby's avatar Matt Kirby
Browse files

test posts

parent 3f3e3b54
No related branches found
No related tags found
1 merge request!8create "Basic components"
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>
</>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment