55 lines
973 B
TypeScript
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'
|
|
}
|
|
}
|
|
]
|