ayco.io-astro/src/constants/stuff.ts
2024-07-27 11:59:44 +02:00

55 lines
973 B
TypeScript

export const stuff: {
icon: string;
text: string;
link?: {url: string, text: string};
}[] = [
// {
// icon: '🧐',
// text: 'Software Extraordinaire'
// },
// {
// icon: '🕵🏻‍♂️',
// text: 'Frontend Detective'
// },
{
icon: '😱',
text: 'Experimenting with',
link: {
url: 'https://mcfly.js.org',
text: 'McFly'
}
},
{
icon: '🧸',
text: 'Creator of',
link: {
url: 'https://cozy.ayco.io',
text: 'Cozy'
}
},
{
icon: '🧱',
text: 'Creator of',
link: {
url: 'https://webcomponent.io',
text: 'WebComponent.io'
}
},
// {
// icon: '🧱',
// text: '...and some',
// link: {
// url: '/stuff',
// text: 'small stuff'
// }
// },
{
icon: '🦌',
text: 'Contributor to',
link: {
url: 'https://github.com/ayoayco/ayoayco/blob/main/elk.md#elk-contributions',
text: 'Elk.zone'
}
}
]