-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsite-navigation.js
116 lines (116 loc) · 3.06 KB
/
site-navigation.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
export const siteNavigation = [
{
label: "get started",
items: [
{
href: "/get-started/contact-us",
label: "Contact Us",
slug: "contact-us",
},
{
href: "/get-started/getting-started",
label: "Getting started",
slug: "getting-started",
},
],
slug: "get-started",
},
{
label: "repository solutions",
items: [
{
href: "/repository-solutions/case-studies-emory",
label: "Case study: Emory University",
slug: "case-studies-emory",
},
{
href: "/repository-solutions/case-study-avalon-at-the-university-of-houston",
label: "Case Study: Avalon at the University of Houston",
slug: "case-study-avalon-at-the-university-of-houston",
},
{
href: "/repository-solutions/examples-and-demos",
label: "examples and demos",
slug: "examples-and-demos",
},
{
href: "/repository-solutions/take-a-tour-of-active-samvera-repositories",
label: "Samvera Repository Tour",
slug: "take-a-tour-of-active-samvera-repositories",
},
{
href: "/repository-solutions/technology-stack",
label: "Technology stack",
slug: "technology-stack",
},
{
label: "Avalon Media System",
href: "https://www.avalonmediasystem.org/",
isExternal: true,
slug: "",
},
{
label: "Hyku",
href: "https://hyku.samvera.org/",
isExternal: true,
slug: "",
},
{
label: "Hyrax",
href: "https://hyrax.samvera.org/",
isExternal: true,
slug: "",
},
{
label: "Samvera Community Github",
href: "https://github.com/samvera",
isExternal: true,
slug: "",
},
{
label: "Samvera Labs",
href: "https://github.com/samvera-labs",
isExternal: true,
slug: "",
},
],
slug: "repository-solutions",
},
{
label: "the community",
items: [
{
href: "/the-community/community-leadership",
label: "Community Leadership",
slug: "community-leadership",
},
{ href: "/the-community/faq", label: "FAQ", slug: "faq" },
{
href: "/the-community/samvera-adopters",
label: "Samvera Adopters",
slug: "samvera-adopters",
},
{
href: "/the-community/samvera-code-of-conduct-and-anti-harassment-policy",
label: "Samvera Code of Conduct and Anti-Harassment Policy",
slug: "samvera-code-of-conduct-and-anti-harassment-policy",
},
{
href: "/the-community/samvera-partners",
label: "Samvera Partners",
slug: "samvera-partners",
},
{
href: "/the-community/samvera-user-profiles",
label: "Samvera user profiles",
slug: "samvera-user-profiles",
},
{
href: "/the-community/service-providers",
label: "Samvera Service Providers",
slug: "service-providers",
},
],
slug: "the-community",
},
];