summary refs log tree commit diff
path: root/app/posts/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/posts/page.tsx')
-rw-r--r--app/posts/page.tsx12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/posts/page.tsx b/app/posts/page.tsx
new file mode 100644
index 0000000..34f0e7f
--- /dev/null
+++ b/app/posts/page.tsx
@@ -0,0 +1,12 @@
+export default function Posts() {
+  return (
+    <>
+      <h1 className="pageTitle">
+        Posts
+      </h1>
+      <main className="mainColumn">
+        <p>This will have posts here eventually we promise</p>
+      </main>
+    </>
+  )
+}