forked from Jaredk3nt/homepage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bookmarks.js
41 lines (41 loc) · 1.38 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
// Note: having length != 4 will mess with layout based on how the site is styled
const bookmarks = [
{
title: "Daily",
links: [
{name: "Inbox", url: "https://mail.protonmail.com"},
{name: "Calendar", url: "https://calendar.protonmail.com"},
{name: "GitHub", url: "https://github.com"},
{name: "Personal Site", url: "https://davidnchidester.com"},
{name: "Only Office", url: "https://personal.onlyoffice.com"}
]
},
{
title: "Media",
links: [
{name: "Youtube", url: "https://youtube.com"},
{name: "Netflix", url: "https://netflix.com"},
{name: "Crunchyroll", url: "https://crunchyroll.com"},
{name: "Nebula", url: "https://watchnebula.com"},
{name: "Curiosity Stream", url: "https://curiositystream.com"}
]
},
{
title: "pony",
links: [
{name: "Equestria Daily", url: "https://equestriadaily.com"},
{name: "/r/mylittlepony", url: "https://reddit.com/r/mylittlepony"},
{name: "The Pony Archive", url: "https://www.theponyarchive.com/"},
{name: "pony devs", url: "https://pony.dev"}
]
},
{
title: "gaming",
links: [
{name: "Steam", url: "https://steampowered.com"},
{name: "Proton DB", url: "https://protondb.com"},
{name: "GameFAQS", url: "https://gamefaqs.gamespot.com"},
{name: "How Long To Beat", url: "https://howlongtobeat.com"}
]
}
];