website/resume.tsx
Foster Hangdaan 17b8a400f5
Modify subheading of Resume page
The download link now follows best practices. The text should be clear as
to what the link does.
2023-08-01 21:23:36 -04:00

75 lines
2.5 KiB
TypeScript

export const title = "Resume - Foster Hangdaan";
export const header = {
heading: "Resume",
subheading: <span><a href="https://static.fosterhangdaan.com/documents/foster-hangdaan-resume.pdf" download>Download my resume</a>.</span>,
};
export default function() {
return (
<>
<section>
<h2>Experience</h2>
<div>
<h3 className="inline">Zetane Systems</h3>
<span className="resume--work-position">Full-Stack Developer</span>
<div>October 2021 - present</div>
</div>
<ul>
<li>Develop pages and components in Next.js according to Figma designs.</li>
<li>Create CI/CD pipeline to containerize app and deploy to AWS.</li>
<li>Debug and fix software issues.</li>
<li>Ensure application quality and functionality by writing end-to-end tests using Cypress.</li>
</ul>
<div>
<h3 className="inline">Startup Tech Pros</h3>
<span className="resume--work-position">Tech Lead</span>
<div>June 2022 - present</div>
</div>
<ul>
<li>Set standards and procedures for Engineering department.</li>
<li>Design, maintain and deploy cloud infrastructure.</li>
<li>Manage software development projects.</li>
<li>Determine software tools and services based on company budget and requirements.</li>
<li>Collaborate with clients to create websites and infrastructure based on business needs.</li>
</ul>
</section>
<section>
<h2>Education</h2>
<div>
<h3 className="inline">Computer Engineering Technology</h3>
<span className="resume--education-emphasis">Emphasis in Computer Programming</span>
<div>Seneca College of Applied Arts and Technology</div>
<div>Graduated August 2020</div>
<div>Cumulative GPA 4.0/4.0</div>
</div>
</section>
<section>
<h2>Skills</h2>
<h3>Programming Languages</h3>
<ul>
<li>JavaScript</li>
<li>TypeScript</li>
<li>HTML</li>
<li>CSS</li>
<li>BASH</li>
</ul>
<h3>Frameworks & Libraries</h3>
<ul>
<li>Deno</li>
<li>Fresh</li>
<li>Lume</li>
<li>Next.js</li>
<li>Node.js</li>
<li>Vue.js</li>
</ul>
<h3>Other Tools & Software</h3>
<ul>
<li>Docker</li>
<li>Linux</li>
</ul>
</section>
</>
);
}