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-04-17 18:03:44 -07: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: 'Search', icon: 'search' },
{ name: 'Feeds', icon: 'rss' },
{ name: 'Mastodon', icon: 'brand-mastodon' },
{ name: 'Coffee', icon: 'coffee' },
],
social: [
{ name: 'Email', url: '/contact', icon: 'at' },
{ name: 'GitHub', url: 'https://github.com/cdransf', icon: 'brand-github' },
{ name: 'npm', url: 'https://www.npmjs.com/~cdransf', icon: 'brand-npm'},
{ name: 'Mastodon', url: 'https://social.lol/@cory', icon: 'brand-mastodon' },
{ name: 'ListenBrainz', url: 'https://listenbrainz.org/user/cdransf/', icon: 'brain' },
{ name: 'Trakt', url: 'https://trakt.tv/users/cdransf', icon: 'device-tv' },
{ name: 'Instapaper', url: 'https://www.instapaper.com/p/coryd', icon: 'news' },
{ name: 'Webrings', url: '/webrings', icon: 'heart-handshake' },
],
}
}