-
Notifications
You must be signed in to change notification settings - Fork 431
/
Copy pathmenu.ts
47 lines (46 loc) · 850 Bytes
/
menu.ts
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
type LanguageKey = string
type MenuItem = {
text: string
link: string
section: string
}
type MenuItems = Record<LanguageKey, MenuItem[]>
export const MENU: MenuItems = {
en: [
{
text: "Data Feeds",
link: "/data-feeds",
section: "dataFeeds",
},
{
text: "Functions",
link: "/chainlink-functions",
section: "chainlinkFunctions",
},
{
text: "CCIP",
link: "/ccip",
section: "ccip",
},
{
text: "Automation",
link: "/chainlink-automation",
section: "automation",
},
{
text: "VRF",
link: "/vrf",
section: "vrf",
},
{
text: "Data Streams",
link: "/data-streams",
section: "dataStreams",
},
{
text: "Nodes",
link: "/chainlink-nodes",
section: "nodeOperator",
},
],
}