mirror of
https://github.com/runyanjake/jake.runyan.dev.git
synced 2025-10-04 13:57:29 -07:00
23 lines
393 B
JavaScript
23 lines
393 B
JavaScript
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
|
|
|
|
aboutSidebar: [
|
|
{
|
|
type: 'doc',
|
|
label: 'About Me',
|
|
id: 'about/about-me'
|
|
},
|
|
],
|
|
|
|
resumeSidebar: [
|
|
{
|
|
type: 'doc',
|
|
label: 'Resume',
|
|
id: 'resume/resume'
|
|
}
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|