This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/_data/nav.js
2024-01-10 17:06:00 -08:00

30 lines
1.1 KiB
JavaScript

export default async function () {
return {
footer: [
{ name: 'Uses' },
{ name: 'Referrals' },
{ name: 'Blogroll' },
{ name: 'Speedlify' },
{ name: 'Stats' },
],
menu: [
{ name: 'Now' },
{ name: 'About' },
{ name: 'Links', icon: 'link' },
{ name: 'Tags', icon: 'tags' },
{ name: 'Search', icon: 'search' },
{ name: 'Feeds', icon: 'rss' },
{ name: 'Mastodon', icon: 'brand-mastodon' },
],
social: [
{ name: 'Email', url: '/contact', icon: 'at' },
{ 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: 'brand-lastfm' },
{ name: 'Trakt', url: 'https://trakt.tv/users/cdransf', icon: 'device-tv' },
{ name: 'The StoryGraph', url: 'https://app.thestorygraph.com/profile/coryd', icon: 'books' },
{ name: 'Buy Me a Coffee', url: 'https://www.buymeacoffee.com/cory', icon: 'cup' },
{ name: 'Webrings', url: '/webrings', icon: 'heart-handshake' },
],
}
}