Add Resume tab

This commit is contained in:
Jake R 2025-01-27 21:52:05 -08:00 committed by whitney
parent 4cc7a28161
commit b3c2a28b33
4 changed files with 66 additions and 1 deletions

View File

@ -0,0 +1,26 @@
---
title: Resume
description: My professional experience and skills
---
# Resume
You can view my resume below or download it as a PDF.
<div className="text-center padding-vert--lg">
<a
className="button button--primary button--lg"
href="./jacob-runyan-resume.pdf"
target="_blank"
download
>
📄 Download Resume (PDF)
</a>
<p className="padding-top--sm text--small text--gray">
Last updated: January 2024 • PDF • 284KB
</p>
</div>
## Online Version
[Your resume content here in markdown format]

View File

@ -29,6 +29,7 @@ const config = {
({
docs: {
sidebarPath: './sidebars.js',
path: './docs',
},
blog: {
showReadingTime: true,
@ -45,12 +46,22 @@ const config = {
'@docusaurus/plugin-content-blog',
{
id: 'projects-blog',
routeBasePath: 'projects',
path: './projects',
routeBasePath: 'projects',
blogTitle: 'Projects',
blogDescription: 'My Current & Past Projects'
},
],
[
'@docusaurus/plugin-content-blog',
{
id: 'resume',
path: './resume',
routeBasePath: 'resume',
blogTitle: 'Resume',
blogDescription: 'My Resume'
},
],
],
themeConfig:
@ -73,6 +84,7 @@ const config = {
},
{to: '/projects', label: 'Projects', position: 'left'},
{to: '/blog', label: 'Blog', position: 'left'},
{to: '/resume', label: 'Resume', position: 'left'},
{
href: 'https://github.com/runyanjake/jake.runyan.dev',
label: 'GitHub',

19
website/resume/index.mdx Normal file
View File

@ -0,0 +1,19 @@
---
title: Resume
description: My professional experience and skills
---
# Resume
View my resume below, hosted on Github as a PDF.
<div className="text-center padding-vert--lg">
<a
className="button button--primary button--lg"
href="https://github.com/runyanjake/resume/blob/main/jacob-runyan-resume.pdf"
target="_blank"
download
>
📄 Resume (PDF)
</a>
</div>

View File

@ -9,6 +9,14 @@ const sidebars = {
id: 'about/about-me'
},
],
resumeSidebar: [
{
type: 'doc',
label: 'Resume',
id: 'resume/resume'
}
],
};
export default sidebars;