mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-06 08:46:46 +00:00
34 lines
1.3 KiB
TypeScript
34 lines
1.3 KiB
TypeScript
import { DefaultTheme } from 'vitepress/theme'
|
|
|
|
export const nav: DefaultTheme.Config['nav'] = [
|
|
{
|
|
text: '📚 Academic',
|
|
items: [
|
|
{
|
|
text: 'K-12',
|
|
items: [
|
|
{ text: '🧪 Chemistry', link: '/academic/chemistry/index', activeMatch: '/academic/chemistry/' },
|
|
{ text: '🧮 Discrete Math.', link: '/discrete-math/index', activeMatch: '/categories/fragments/' },
|
|
{ text: '✍️ Literature', link: '/academic/literature/index', activeMatch: '/academic/literature/' },
|
|
],
|
|
},
|
|
{ text: '', link: '', activeMatch: '' },
|
|
{ text: '', link: '', activeMatch: '' },
|
|
{ text: '', link: '', activeMatch: '' },
|
|
{ text: '', link: '', activeMatch: '' },
|
|
{ text: '', link: '', activeMatch: '' },
|
|
{ text: '', link: '', activeMatch: '' },
|
|
{ text: '', link: '', activeMatch: '' },
|
|
],
|
|
activeMatch: '/academic/',
|
|
},
|
|
{
|
|
text: '💾 Save',
|
|
items: [
|
|
{ text: '📰 Reading', link: '/save/reading/index', activeMatch: '/save/reading/' },
|
|
{ text: '🥠 Vocabulary', link: '/academic/vocabulary/index', activeMatch: '/academic/vocabulary/' },
|
|
],
|
|
activeMatch: '/save/',
|
|
},
|
|
]
|