This repository has been archived on 2025-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coryd.dev-eleventy/src/_data/nav.js

37 lines
1.4 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: 'Last.fm',
url: 'https://www.last.fm/user/coryd_',
icon: 'headphones',
},
{ name: 'Trakt', url: 'https://trakt.tv/users/cdransf', icon: 'device-tv' },
{ name: 'The 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',
},
],
}
}