added unity to skills icons

This commit is contained in:
Kim, Jimin 2022-02-13 10:32:26 +09:00
parent 58e30296d4
commit 095323c638
3 changed files with 7 additions and 1 deletions

View file

@ -1,4 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="480" height="600"> <svg xmlns="http://www.w3.org/2000/svg" width="480" height="750">
<style> <style>
<%= style %> <%= style %>
</style> </style>
@ -21,6 +21,10 @@
<h3>Desktop</h3> <h3>Desktop</h3>
<%- include("badges.ejs", { badges: data.frontEndDesktop }) %> <%- include("badges.ejs", { badges: data.frontEndDesktop }) %>
<h3>Game development</h3>
<%- include("badges.ejs", { badges: data.gameDev }) %>
</div> </div>
</foreignObject> </foreignObject>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 584 B

After

Width:  |  Height:  |  Size: 673 B

Before After
Before After

View file

@ -6,6 +6,7 @@
"rust", "rust",
"csharp" "csharp"
], ],
"gameDev": ["unity"],
"frontEndWeb": ["react", "svelte", "html5", "css3", "sass", "tailwindcss"], "frontEndWeb": ["react", "svelte", "html5", "css3", "sass", "tailwindcss"],
"frontEndDesktop": ["gnome gtk", "electron", "tauri"] "frontEndDesktop": ["gnome gtk", "electron", "tauri"]
} }

View file

@ -61,6 +61,7 @@ function generatePortfolioSVGs() {
programmingLanguage: [], programmingLanguage: [],
frontEndWeb: [], frontEndWeb: [],
frontEndDesktop: [], frontEndDesktop: [],
gameDev: [],
} }
for (const skillCategory in skills) { for (const skillCategory in skills) {