website/resume.tsx

26 lines
467 B
TypeScript

export const title = "Resume - Foster Hangdaan";
export const header = {
heading: "Resume",
subheading: <>Download a copy of my resume <a href="">here</a>.</>,
};
export default function() {
return (
<>
<section>
<h2>Experience</h2>
<ul>
<li>Placeholder</li>
</ul>
</section>
<section>
<h2>Education</h2>
<ul>
<li>Placeholder</li>
</ul>
</section>
</>
);
}