diff --git a/daily-thought-frontend/src/types/post.ts b/daily-thought-frontend/src/types/post.ts
new file mode 100644
index 0000000000000000000000000000000000000000..3c32f436f77591cbd3785d9e0ecf07e168f910c6
--- /dev/null
+++ b/daily-thought-frontend/src/types/post.ts
@@ -0,0 +1,8 @@
+import { User } from "./user"
+
+export type Post = {
+  User: User;
+  Content: string;
+  Timestamp: string;
+  Likes: User[];
+}
\ No newline at end of file