2024-08-01 04:00:11 +02:00
|
|
|
import { DefaultTheme } from 'vitepress'
|
|
|
|
export const nav: DefaultTheme.NavItem[] = [
|
|
|
|
{ text: '首页', link: 'https://aexiar.github.io/' },
|
|
|
|
{ text: '计组6件套', link: 'https://aexiar.github.io/coa6/notes/' },
|
|
|
|
{
|
|
|
|
text: '编程语言', items: [
|
|
|
|
{ text: 'c/c++', link: '/notes/' },
|
|
|
|
{ text: '前端', link: 'https://aexiar.github.io/web-design/notes/' },
|
|
|
|
{ text: 'Java', link: 'https://aexiar.github.io/java/notes/' },
|
|
|
|
{ text: '大数据', link: 'https://aexiar.github.io/big-data/notes/' },
|
|
|
|
{ text: '云原生', link: 'https://aexiar.github.io/linux/notes/' },
|
|
|
|
{ text: 'Go', link: 'https://aexiar.github.io/go/notes/' },
|
|
|
|
{ text: 'Python', link: 'https://aexiar.github.io/python/notes/' },
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{ text: '开源软件', link: 'https://aexiar.github.io/open-software/notes/' },
|
2024-08-16 04:24:26 +02:00
|
|
|
{ text: '关于我', link: 'notes/about/' },
|
2024-08-01 04:00:11 +02:00
|
|
|
]
|