18 lines
535 B
Plaintext
18 lines
535 B
Plaintext
local Link(name, url, icon=std.asciiLower(name)) = {
|
|
icon: icon,
|
|
name: name,
|
|
url: url,
|
|
};
|
|
|
|
{
|
|
links: [
|
|
Link('Git', 'https://git.jolheiser.com'),
|
|
Link('GitHub', 'https://github.com/jolheiser'),
|
|
Link('Gitea', 'https://gitea.com/jolheiser'),
|
|
Link('JoJoDev', 'https://git.jojodev.com/jolheiser', 'gitea'),
|
|
Link('Fediverse', 'https://social.jolheiser.com/@jolheiser', 'activitypub'),
|
|
Link('Bluesky', 'https://bsky.app/profile/jolheiser.com'),
|
|
Link('LinkedIn', 'https://linkedin.com/in/jolheiser'),
|
|
],
|
|
}
|