37 lines
1.5 KiB
JavaScript
37 lines
1.5 KiB
JavaScript
module.exports = async function () {
|
|
return {
|
|
footer: [{ name: 'Uses' }, { name: 'Referrals' }],
|
|
menu: [
|
|
{ name: 'Now' },
|
|
{ name: 'About' },
|
|
{ name: 'Tags', icon: 'tags' },
|
|
{ name: 'Search', icon: 'search' },
|
|
{ name: 'Feeds', icon: 'rss' },
|
|
{ name: 'Webrings', icon: 'heart-handshake' },
|
|
],
|
|
social: [
|
|
{ name: 'Email', url: 'mailto:gauze_0_saps@icloud.com', icon: 'at' },
|
|
{ name: 'Calendar', url: 'https://savvycal.com/ced/', icon: 'calendar-plus' },
|
|
{ name: 'GitHub', url: 'https://github.com/cdransf', icon: 'brand-github' },
|
|
{ name: 'Mastodon', url: 'https://social.lol/@cory', icon: 'brand-mastodon' },
|
|
{
|
|
name: 'Apple Music',
|
|
url: 'https://music.apple.com/profile/cdransf',
|
|
icon: 'device-airpods',
|
|
},
|
|
{ name: 'Trakt', url: 'https://trakt.tv/users/cdransf', icon: 'device-tv' },
|
|
{ name: 'StoryGraph', url: 'https://app.thestorygraph.com/profile/coryd', icon: 'books' },
|
|
{ name: 'Pinboard', url: 'http://pinboard.in/u:cdme', icon: 'pin' },
|
|
{ name: 'Buy Me a Coffee', url: 'https://www.buymeacoffee.com/cory', icon: 'cup' },
|
|
],
|
|
resume: [
|
|
{ name: 'GitHub', url: 'https://github.com/cdransf', icon: 'brand-github' },
|
|
{ name: 'LinkedIn', url: 'https://www.linkedin.com/in/cdransf/', icon: 'brand-linkedin' },
|
|
{
|
|
name: 'Calendar',
|
|
url: 'https://coryd.dev/calendar',
|
|
icon: 'calendar-plus',
|
|
},
|
|
],
|
|
}
|
|
}
|