Skip to content

Commit

Permalink
interactiveMessenger: improve links section
Browse files Browse the repository at this point in the history
  • Loading branch information
NLthijs48 committed May 19, 2024
1 parent 705260c commit cb7434b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/activities/interactiveMessenger/interactiveMessenger.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {HobbyInformation} from '../ActivityInformation';
import ChatIcon from '@mui/icons-material/Chat';
import ActivityType from '../ActivityType';
import HighlightType from '../HighlightType';

const interactiveMessenger: HobbyInformation = {
activityType: ActivityType.Hobby,
Expand All @@ -12,7 +13,16 @@ const interactiveMessenger: HobbyInformation = {
// End of active development
till: 'December 2017',
Icon: ChatIcon,
website: 'https://github.com/NLthijs48/InteractiveMessenger',
highlights: [
{type: HighlightType.Link, href: 'https://github.com/NLthijs48/InteractiveMessenger', title: 'Source code on GitHub'},
{
type: HighlightType.Link,
href: 'https://github.com/NLthijs48/InteractiveMessenger/blob/master/Specifications%20%26%20Guidelines.md',
title: 'Message specification',
caption: 'Examples of inputs and the messages they produce in MineCraft',
},
{type: HighlightType.Link, href: 'https://interactivemessenger.wiefferink.me/', title: 'JavaDoc of the library'},
],
};

export default interactiveMessenger;

0 comments on commit cb7434b

Please sign in to comment.