-
Notifications
You must be signed in to change notification settings - Fork 151
/
bookmarks.js
47 lines (47 loc) · 1.29 KB
/
bookmarks.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
// Note: having length != 4 will mess with layout based on how the site is styled
const bookmarks = [
{
title: "Daily",
links: [
{ name: "Inbox", url: "https://inbox.google.com" },
{ name: "GitHub", url: "https://github.com" },
{ name: "Drive", url: "https://drive.google.com" },
],
},
{
title: "Media",
links: [
{ name: "Youtube", url: "https://youtube.com" },
{ name: "Netflix", url: "https://netflix.com" },
{ name: "Crunchyroll", url: "https://crunchyroll.com" },
{
name: "Amazon Prime",
url: "https://www.amazon.com/Amazon-Video",
},
],
},
{
title: "Reddit",
links: [
{ name: "/r/overwatch", url: "https://reddit.com/r/overwatch" },
{
name: "/r/pcmasterrace",
url: "https://reddit.com/r/pcmasterrace",
},
{ name: "/r/me_irl", url: "https://reddit.com/r/me_irl" },
{
name: "/r/battlestations",
url: "https://reddit.com/r/battlestations",
},
{ name: "/r/unixporn", url: "https://reddit.com/r/unixporn" },
{ name: "/r/news", url: "https://reddit.com/r/news" },
],
},
{
title: "Social",
links: [
{ name: "Twitter", url: "https://twitter.com" },
{ name: "Facebook", url: "https://facebook.com" },
],
},
];