You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
232 B
TypeScript

export default function About() {
return (
<>
<h1 className="pageTitle">
About
</h1>
<main className="mainColumn">
<p>Maybe we say some things about ourselves?</p>
</main>
</>
)
}