Created assets folder, Moved projects to seperate json file
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 5.0 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 629 B After Width: | Height: | Size: 629 B |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
@ -0,0 +1,63 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "Argo",
|
||||||
|
"description": "Argo is a new app for Magister 6, made with Dart and Flutter. It will soon beavailable on the Google Play store and (maybe) even the App store! For more information, click either of the buttons below.",
|
||||||
|
"cover": "argo.png",
|
||||||
|
"buttons": [
|
||||||
|
{
|
||||||
|
"link": "https://argo-magister.net",
|
||||||
|
"text": "Website"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "https://github.com/argo-client/app",
|
||||||
|
"text": "Github"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Tempo",
|
||||||
|
"description": "Tempo is a 'simple' Discord bot which can be used to play YouTube, SoundCloud and even Spotify songs. It's made in pure TypeScript and has plentiful settings.",
|
||||||
|
"cover": "tempo.png",
|
||||||
|
"right": true,
|
||||||
|
"buttons": [
|
||||||
|
{
|
||||||
|
"link": "https://tempo.g-vm.nl",
|
||||||
|
"text": "Website"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "https://tempo.g-vm.nl/invite",
|
||||||
|
"text": "Invite"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Keyzo",
|
||||||
|
"description": "Keyzo is an electron-based program written in JavaScript and CSS but I amplanning on moving to TypeScript. It's main use is to bring every keybind you will every need into a single program, with a simple and neat interface.",
|
||||||
|
"buttons": [
|
||||||
|
{
|
||||||
|
"link": "https://keyzo.net",
|
||||||
|
"text": "Website"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "https://github.com/Guusvanmeerveld/Keyzo",
|
||||||
|
"text": "Github"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Magister Auto-Login",
|
||||||
|
"description": "Magister Auto-Login is a chrome extension that automatically logs into Magister 6 for you.",
|
||||||
|
"right": true,
|
||||||
|
"buttons": [
|
||||||
|
{
|
||||||
|
"link": "https://chrome.google.com/webstore/detail/magister-auto-login/cekhhgcjpkahghpgeafhmkkjhidodplk?hl=nl",
|
||||||
|
"text": "Add to Chrome"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"link": "https://github.com/Guusvanmeerveld/Magister-Auto-Login",
|
||||||
|
"text": "Github"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"cover": "autologin.png"
|
||||||
|
}
|
||||||
|
]
|
@ -0,0 +1,12 @@
|
|||||||
|
export default interface Project {
|
||||||
|
name: string;
|
||||||
|
description: string;
|
||||||
|
cover?: string;
|
||||||
|
right?: boolean;
|
||||||
|
buttons: Button[];
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Button {
|
||||||
|
link: string;
|
||||||
|
text: string;
|
||||||
|
}
|