-
Notifications
You must be signed in to change notification settings - Fork 7
/
navlinks.js
56 lines (53 loc) · 2.18 KB
/
navlinks.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
const navLinks = [
{
type: 'dropdown',
label: 'GitHub',
position: 'right',
items: [
{label: 'Neural Magic', to: 'https://github.com/neuralmagic/'},
{label: 'Docs', to: 'https://github.com/neuralmagic/docs'},
{label: 'nm-vllm', to: 'https://github.com/neuralmagic/nm-vllm'},
{label: 'DeepSparse', to: 'https://github.com/neuralmagic/deepsparse'},
{label: 'SparseML', to: 'https://github.com/neuralmagic/sparseml'},
{label: 'SparseZoo', to: 'https://github.com/neuralmagic/sparsezoo'},
]
},
{
type: 'dropdown',
label: 'Products',
position: 'right',
items: [
{label: 'nm-vllm', to: 'https://neuralmagic.com/nm-vllm'},
{label: 'DeepSparse', to: 'https://neuralmagic.com/deepsparse'},
{label: 'SparseML', to: 'https://neuralmagic.com/sparseml'},
{label: 'SparseZoo', to: 'https://sparsezoo.neuralmagic.com/'},
]
},
{
type: 'dropdown',
label: 'Resources',
position: 'right',
items: [
{label: 'Blog', to: 'https://neuralmagic.com/blog/'},
{label: 'Research Papers', to: 'http://neuralmagic.com/resources/technical-papers/'},
{label: 'Support', to: 'https://neuralmagic.com/support'},
{label: 'Events', to: 'https://neuralmagic.com/community/#events'},
{label: 'Videos', to: 'https://www.youtube.com/channel/UCo8dO_WMGYbWCRnj_Dxr4EA'},
{label: 'Developers', to: 'http://neuralmagic.com/community'},
]
},
{
type: 'dropdown',
label: 'Company',
position: 'right',
items: [
{label: 'About Us', to: 'http://neuralmagic.com/about'},
{label: 'Our Technology', to: 'http://neuralmagic.com/our-technology'},
{label: 'Careers', to: 'https://apply.workable.com/neural-magic/'},
{label: 'Contact', to: 'http://neuralmagic.com/contact'},
{label: 'Legal', to: 'http://neuralmagic.com/legal'},
{label: 'neuralmagic.com', to: 'http://neuralmagic.com/'},
]
},
];
export default navLinks;