-
Notifications
You must be signed in to change notification settings - Fork 220
/
Copy pathnewTabItems.ts
52 lines (50 loc) · 1.01 KB
/
newTabItems.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
48
49
50
51
52
import urls from "common/constants/urls";
export const newTabPrimaryItems = [
{
label: ["sidebar.explore"],
icon: "earth",
url: "itch://featured",
},
{
label: ["sidebar.library"],
icon: "heart-filled",
url: "itch://library",
},
{
label: ["sidebar.collections"],
icon: "video_collection",
url: "itch://collections",
},
{
label: ["sidebar.dashboard"],
icon: "archive",
url: "itch://dashboard",
},
];
export const newTabSecondaryItems = [
{
label: ["new_tab.twitter"],
icon: "twitter",
url: "https://twitter.com/search?q=itch.io&src=typd",
},
{
label: ["new_tab.random"],
icon: "shuffle",
url: urls.itchio + "/randomizer",
},
{
label: ["new_tab.on_sale"],
icon: "shopping_cart",
url: urls.itchio + "/games/on-sale",
},
{
label: ["new_tab.top_sellers"],
icon: "star",
url: urls.itchio + "/games/top-sellers",
},
{
label: ["new_tab.devlogs"],
icon: "fire",
url: urls.itchio + "/devlogs",
},
];