diff --git a/daily-thought-frontend/src/pages/feed.tsx b/daily-thought-frontend/src/pages/feed.tsx
new file mode 100644
index 0000000000000000000000000000000000000000..8cf8097152078cf5fd116ef4d3c38ea74a92b956
--- /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