docs_veda_strategic/navigation/navbar.ts

36 lines
761 B
TypeScript
Raw Normal View History

2025-01-01 21:50:11 +00:00
import type { ThemeConfig } from '@docusaurus/preset-classic';
export const navbar: ThemeConfig['navbar'] = {
title: '',
logo: {
alt: 'Logo',
src: 'img/logo.svg',
srcDark: 'img/logo.svg', // Use same logo for dark mode
},
items: [
{
type: 'docSidebar',
sidebarId: 'autogenSidebar',
position: 'left',
label: 'Veda',
},
{
type: 'docSidebar',
sidebarId: 'appendixSidebar',
position: 'left',
label: 'More Info',
},
// {
// to: '/blog',
// label: 'Blog',
// position: 'left',
// },
// {
// type: 'docSidebar',
// sidebarId: 'tutorialSidebar',
// position: 'left',
// label: 'Tutorial',
// }
],
};