header.ts
1import type { IHeader } from '@/interfaces/IConfig'
2
3export const header: IHeader[] = [
4 {
5 name: 'Projects',
6 href: '/projects',
7 },
8 {
9 name: 'Links',
10 href: '/links',
11 },
12 {
13 name: 'Misc',
14 href: '#',
15 dropdown: [
16 {
17 name: 'Posts',
18 href: '/posts',
19 },
20 {
21 name: 'Blog',
22 href: '/blog',
23 },
24 {
25 name: 'Guides',
26 href: '/guides',
27 },
28 ],
29 },
30 {
31 name: 'Github',
32 href: 'https://github.com/chocoOnEstrogen',
33 },
34]
35