29 lines
634 B
TypeScript
29 lines
634 B
TypeScript
import type { DefaultTheme } from 'vitepress/types/default-theme'
|
|
|
|
export const ContributorGuideSidebar: DefaultTheme.SidebarItem[] = [
|
|
{
|
|
text: 'Get Involved',
|
|
link: '/docs/contributor-guide/',
|
|
},
|
|
{
|
|
text: 'Bug Reports',
|
|
link: '/docs/contributor-guide/report-bugs',
|
|
},
|
|
{
|
|
text: 'Feature Requests',
|
|
link: '/docs/contributor-guide/feature-requests',
|
|
},
|
|
{
|
|
text: 'Translations and i18n',
|
|
link: '/docs/contributor-guide/i18n',
|
|
},
|
|
{
|
|
text: 'Pull Requests',
|
|
link: '/docs/contributor-guide/pull-requests',
|
|
},
|
|
{
|
|
text: 'Donate',
|
|
link: '/docs/contributor-guide/sponsor',
|
|
},
|
|
]
|