Add initial resume page
This commit is contained in:
parent
3bfc56301f
commit
fe9ffbfa84
1 changed files with 27 additions and 0 deletions
27
resume.tsx
Normal file
27
resume.tsx
Normal 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>
|
||||
</>
|
||||
);
|
||||
}
|
Loading…
Reference in a new issue