config_example.js (view raw)
1let theme = "based";
2
3let categories = [
4 {
5 name: "Useful links",
6 links: [
7 "https://discord.com/app Discord",
8 "https://youtube.com YouTube",
9 "https://twitch.tv Twitch",
10 "https://facebook.com Facebook",
11 "https://instagram.com Instagram",
12 "https://web.whatsapp.com WhatsApp",
13 "https://amazon.it Amazon",
14 "https://outlook.com Outlook",
15 "https://twitter.com Twitter"
16 ]
17 },
18 {
19 name: "Your own links",
20 links: [
21 "# Link 1",
22 "# Link 2",
23 "# Link 3",
24 "# Link 4",
25 "# Link 5",
26 "# Link 6"
27 ]
28 }
29];