mirror of
https://github.com/Jaredk3nt/homepage.git
synced 2024-11-22 07:43:45 +01:00
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
// 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" },
|
|
],
|
|
},
|
|
]; |