27 lines
522 B
TypeScript
27 lines
522 B
TypeScript
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>
|
|
</>
|
|
);
|
|
}
|