Add initial resume page

This commit is contained in:
Foster Hangdaan 2023-07-26 09:09:33 -04:00
parent 3bfc56301f
commit fe9ffbfa84
Signed by: foster
GPG key ID: E48D7F49A852F112

27
resume.tsx Normal file
View file

@ -0,0 +1,27 @@
export const title = "Resume - Foster Hangdaan";
export default function() {
return (
<>
<header className="page-header">
<h1>Resume</h1>
</header>
<hr/>
<section>
<h2>Experience</h2>
<ul>
<li>Placeholder</li>
</ul>
</section>
<section>
<h2>Education</h2>
<ul>
<li>Placeholder</li>
</ul>
</section>
<section>
<p>Download a copy of my resume here.</p>
</section>
</>
);
}