diff --git a/src/assets/localization/en/localization.json b/src/assets/localization/en/localization.json index e8cef21..742b7c4 100644 --- a/src/assets/localization/en/localization.json +++ b/src/assets/localization/en/localization.json @@ -21,6 +21,23 @@ "desc": "As part of my projects, I have to master a lot of different fields, like website creation, data analysis, artificial intelligence, or software creation.", "buttonText": "More about skills" } + }, + "projects":{ + "title": "Projects", + "desc": "I'm always working on something ! Here is a list of all important projects I worked on :", + "project":{ + "disblock":{ + "title": "Disblock", + "desc": "Disblock is a project about a Discord bot. A large number of users want to customize their Discord servers with bots, but lacks the coding skills. Disblock is a way to assemble easily his own bot using blocks that can describe what to do, and when.", + "button_text": "See on Github" + } + }, + "tags":{ + "home": "On my free time", + "active": "Active", + "bugs_only": "Bug fixes only", + "archived": "Archived" + } } }, "skills": { diff --git a/src/assets/svg/projects/disblock.svg b/src/assets/svg/projects/disblock.svg new file mode 100644 index 0000000..77a48c0 --- /dev/null +++ b/src/assets/svg/projects/disblock.svg @@ -0,0 +1,461 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/components/home/libs/projectTag.vue b/src/components/home/libs/projectTag.vue index f36333a..52d6273 100644 --- a/src/components/home/libs/projectTag.vue +++ b/src/components/home/libs/projectTag.vue @@ -24,7 +24,7 @@ background-color: v-bind(colour); width: fit-content; height: fit-content; - padding: 2px 16px; + padding: 2px 8px; border-radius: 8px; } p{ diff --git a/src/components/home/projects.vue b/src/components/home/projects.vue index 77d1ede..a9afe86 100644 --- a/src/components/home/projects.vue +++ b/src/components/home/projects.vue @@ -1,27 +1,27 @@