mirror of
https://github.com/runyanjake/jake.runyan.dev.git
synced 2025-10-04 13:57:29 -07:00
Add Resume tab
This commit is contained in:
parent
4cc7a28161
commit
b3c2a28b33
26
website/docs/resume/resume.mdx
Normal file
26
website/docs/resume/resume.mdx
Normal 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]
|
@ -29,6 +29,7 @@ const config = {
|
|||||||
({
|
({
|
||||||
docs: {
|
docs: {
|
||||||
sidebarPath: './sidebars.js',
|
sidebarPath: './sidebars.js',
|
||||||
|
path: './docs',
|
||||||
},
|
},
|
||||||
blog: {
|
blog: {
|
||||||
showReadingTime: true,
|
showReadingTime: true,
|
||||||
@ -45,12 +46,22 @@ const config = {
|
|||||||
'@docusaurus/plugin-content-blog',
|
'@docusaurus/plugin-content-blog',
|
||||||
{
|
{
|
||||||
id: 'projects-blog',
|
id: 'projects-blog',
|
||||||
routeBasePath: 'projects',
|
|
||||||
path: './projects',
|
path: './projects',
|
||||||
|
routeBasePath: 'projects',
|
||||||
blogTitle: 'Projects',
|
blogTitle: 'Projects',
|
||||||
blogDescription: 'My Current & Past Projects'
|
blogDescription: 'My Current & Past Projects'
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
[
|
||||||
|
'@docusaurus/plugin-content-blog',
|
||||||
|
{
|
||||||
|
id: 'resume',
|
||||||
|
path: './resume',
|
||||||
|
routeBasePath: 'resume',
|
||||||
|
blogTitle: 'Resume',
|
||||||
|
blogDescription: 'My Resume'
|
||||||
|
},
|
||||||
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
themeConfig:
|
themeConfig:
|
||||||
@ -73,6 +84,7 @@ const config = {
|
|||||||
},
|
},
|
||||||
{to: '/projects', label: 'Projects', position: 'left'},
|
{to: '/projects', label: 'Projects', position: 'left'},
|
||||||
{to: '/blog', label: 'Blog', position: 'left'},
|
{to: '/blog', label: 'Blog', position: 'left'},
|
||||||
|
{to: '/resume', label: 'Resume', position: 'left'},
|
||||||
{
|
{
|
||||||
href: 'https://github.com/runyanjake/jake.runyan.dev',
|
href: 'https://github.com/runyanjake/jake.runyan.dev',
|
||||||
label: 'GitHub',
|
label: 'GitHub',
|
||||||
|
19
website/resume/index.mdx
Normal file
19
website/resume/index.mdx
Normal 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>
|
@ -9,6 +9,14 @@ const sidebars = {
|
|||||||
id: 'about/about-me'
|
id: 'about/about-me'
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
||||||
|
resumeSidebar: [
|
||||||
|
{
|
||||||
|
type: 'doc',
|
||||||
|
label: 'Resume',
|
||||||
|
id: 'resume/resume'
|
||||||
|
}
|
||||||
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
export default sidebars;
|
export default sidebars;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user