summary refs log tree commit diff
path: root/app/posts/page.tsx
diff options
context:
space:
mode:
authorAshelyn Rose <git@tempest.dev>2023-05-08 14:45:55 -0600
committerAshelyn Rose <git@tempest.dev>2023-05-08 14:45:55 -0600
commit7e3dc4ace4c6b21bc68264dc76c8c442aec8031a (patch)
treec6ff346374e91913a12a8bb21da7fe8c29dd5429 /app/posts/page.tsx
parent880cfbeb74546056feab63ed6e92a10c0dbaf2c3 (diff)
standardize component structure more
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>
+    </>
+  )
+}