From 42f261fd36c84cbaa9418971d08f1cc559ef6370 Mon Sep 17 00:00:00 2001
From: Matt Kirby <MattJKirby@outlook.com>
Date: Tue, 14 Mar 2023 19:03:26 +0000
Subject: [PATCH] Started feed page

---
 daily-thought-frontend/src/pages/feed.tsx | 28 +++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 daily-thought-frontend/src/pages/feed.tsx

diff --git a/daily-thought-frontend/src/pages/feed.tsx b/daily-thought-frontend/src/pages/feed.tsx
new file mode 100644
index 00000000..8cf80971
--- /dev/null
+++ b/daily-thought-frontend/src/pages/feed.tsx
@@ -0,0 +1,28 @@
+import NavBar from "@/components/navigation/NavBar";
+import Question from "@/components/question/Question";
+
+const user = {
+  Name: 'Tom Cook',
+  email: 'tom@example.com',
+  Username: 'TomCook',
+  Avatar:
+    'https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80',
+}
+
+const Feed = () => {
+
+
+
+    
+    return(
+      <>
+        <NavBar user={user} />
+        <div className="flex w-full justify-center">
+          <Question />
+
+        </div>
+      </>
+    )
+}
+
+export default Feed;
\ No newline at end of file
-- 
GitLab