diff --git a/packages/frontendmu-data/data/projects.ts b/packages/frontendmu-data/data/projects.ts index 764b5476..3015a5a7 100644 --- a/packages/frontendmu-data/data/projects.ts +++ b/packages/frontendmu-data/data/projects.ts @@ -2,23 +2,51 @@ interface Project { title: string icon: string project_url: string + description: string author_github_username: string categories: string[] } -const projects: Project[] = [ +export const projects: Project[] = [ { title: 'git-cz', - icon: '', + icon: 'openmoji:windows', project_url: 'https://github.com/k3ii/git-cz', author_github_username: 'k3ii', - categories: ['git', 'cli'] + categories: ['git', 'cli'], + description: 'A simple git commitizen cli tool' }, { title: 'zourer', - icon: '', + icon: 'game-icons:shouting', project_url: 'https://github.com/nicolasstrands/zourer', author_github_username: 'nicolasstrands', - categories: ['git', 'cli'] + categories: ['dictionary', 'open-data'], + description: 'A dictionary of profanity words in the Mauritian Kreol language' }, + { + title: 'Mauritius Tax Calculator', + icon: 'tdesign:money', + project_url: 'https://github.com/n-d-r-d-g/redesigned/tree/main/mauritius_tax_calculator', + author_github_username: 'n-d-r-d-g', + categories: ['taxation', 'calculator', 'mauritius'], + description: 'A simple tax calculator for Mauritius', + }, + { + title: 'CSS Clock', + icon: 'mdi:clock-time-eight', + project_url: 'https://clock-css.netlify.app/', + author_github_username: 'MrSunshyne', + categories: ['css', 'clock'], + description: 'A simple clock made with CSS', + }, + { + title: 'Le Pop Quiz', + icon: 'material-symbols-light:question-exchange-rounded', + project_url: 'https://lepopquiz.com/', + author_github_username: 'cedpoilly', + categories: ['quiz', 'game', 'real-time', 'ai'], + description: 'A real-time quiz game with AI', + } + ] \ No newline at end of file diff --git a/packages/frontendmu-nuxt/components/community/GithubIssuesSection.vue b/packages/frontendmu-nuxt/components/community/GithubIssuesSection.vue index e05d0f5f..f1c61032 100644 --- a/packages/frontendmu-nuxt/components/community/GithubIssuesSection.vue +++ b/packages/frontendmu-nuxt/components/community/GithubIssuesSection.vue @@ -62,7 +62,7 @@ function isTabActive(state: IssueState) { -