website/resume.tsx

26 lines
467 B
TypeScript
Raw Normal View History

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