9 lines
137 B
TypeScript
9 lines
137 B
TypeScript
|
export default function AboutPage() {
|
||
|
return (
|
||
|
<main>
|
||
|
<h1>About</h1>
|
||
|
<p>This is the about page.</p>
|
||
|
</main>
|
||
|
);
|
||
|
}
|