summary refs log tree commit diff
path: root/app/posts/page.tsx
blob: 34f0e7f927b7dd001060a7703aeebaac9a958ca8 (plain)
1
2
3
4
5
6
7
8
9
10
11
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>
    </>
  )
}