-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
options.js
49 lines (49 loc) · 1.94 KB
/
options.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
export const options = [
{
category: "Type",
subdata: [
{ id: 0, value: "Article", label: "Article" },
{ id: 1, value: "Blog", label: "Blog" },
{ id: 2, value: "News", label: "News" },
{ id: 3, value: "Workshop", label: "Workshop" },
{ id: 4, value: "Recorded Webinar", label: "Recorded Webinar" },
{ id: 5, value: "Event", label: "Event" },
{ id: 6, value: "Tutorial", label: "Tutorial" },
{ id: 7, value: "Case Study", label: "Case Study" },
{ id: 8, value: "Infographic", label: "Infographic" },
{ id: 9, value: "Guide", label: "Guide" },
{ id: 10, value: "FAQ", label: "FAQ" },
{ id: 11, value: "Interview", label: "Interview" }]
},
{
category: "Product",
subdata: [
{ id: 0, value: "Meshery", label: "Meshery" },
{ id: 1, value: "Kanvas", label: "Kanvas" },
{ id: 2, value: "Docker Extension", label: "Docker Extension" },
{ id: 3, value: "Service Mesh Performance", label: "SMP" },
{ id: 4, value: "Service Mesh Landscape", label: "Service Mesh Landscape" },
{ id: 5, value: "Nighthawk", label: "Nighthawk" }]
},
{
category: "Technology",
subdata: [
{ id: 0, value: "API", label: "API" },
{ id: 1, value: "Cloud", label: "Cloud" },
{ id: 2, value: "Docker", label: "Docker" },
{ id: 3, value: "JWT", label: "JWT" },
{ id: 4, value: "Kubernetes", label: "Kubernetes" },
{ id: 5, value: "WebAssembly", label: "WebAssembly" }]
},
{
category: "Service Mesh",
subdata: [
{ id: 0, value: "Consul", label: "Consul" },
{ id: 1, value: "Linkerd", label: "Linkerd" },
{ id: 2, value: "Istio", label: "Istio" },
{ id: 3, value: "Open Service Mesh", label: "Open Service Mesh" },
{ id: 4, value: "Kuma", label: "Kuma" },
{ id: 5, value: "Network Service Mesh", label: "Network Service Mesh" },
{ id: 6, value: "Traefik Mesh", label: "Traefik Mesh" }]
},
];