54 lines
969 B
TypeScript
54 lines
969 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.pub',
|
|
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://main.elk.zone/m.webtoo.ls/public/local',
|
|
text: 'Elk.zone',
|
|
},
|
|
},
|
|
]
|