diff options
Diffstat (limited to 'app/about/page.tsx')
-rw-r--r-- | app/about/page.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/about/page.tsx b/app/about/page.tsx new file mode 100644 index 0000000..dd04ccc --- /dev/null +++ b/app/about/page.tsx @@ -0,0 +1,12 @@ +export default function About() { + return ( + <> + <h1 className="pageTitle"> + About + </h1> + <main className="mainColumn"> + <p>Maybe we say some things about ourselves?</p> + </main> + </> + ) +} |