summary refs log tree commit diff
path: root/app/about/page.tsx
blob: dd04ccc043d4b1628f8f57b1903b16a7b47906a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export default function About() {
  return (
    <>
      <h1 className="pageTitle">
        About
      </h1>
      <main className="mainColumn">
        <p>Maybe we say some things about ourselves?</p>
      </main>
    </>
  )
}