diff --git a/components/Badge.vue b/components/Badge.vue index 32a2aea..0446650 100644 --- a/components/Badge.vue +++ b/components/Badge.vue @@ -37,17 +37,17 @@ //todo: in future make the icons local instead of links const badges: { [id: string]: IBadge; } = { - "godot4": { name: "Godot 4", color:"background-color : white", icon: "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Godot_icon.svg/2048px-Godot_icon.svg.png"}, - "unity": { name: "Unity", color:"background-color : white", icon: "https://static-00.iconduck.com/assets.00/unity-icon-999x1024-kgzo1ar1.png"}, - "gamejam": { name: "Game Jam!", color:"background-color : yellow", icon: "https://static-00.iconduck.com/assets.00/timer-icon-512x512-vrl212i7.png"}, - "vue": { name: "Vue", color:"background-color : white", icon: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSvsXyz8eDobC4MvaRkM3zmOZ9ETdrS0ozGCQ&s"}, - "nuxt": { name: "Nuxt", color:"background-color : white", icon: "https://nuxt.com/assets/design-kit/icon-green.svg"}, + "godot4": { name: "Godot 4", color:"background-color : white", icon: "img/badges/godot.png"}, + "unity": { name: "Unity", color:"background-color : white", icon: "img/badges/unity.png"}, + "gamejam": { name: "Game Jam!", color:"background-color : yellow", icon: "img/badges/gamejam.webp"}, + "vue": { name: "Vue", color:"background-color : white", icon: "img/badges/vue.png"}, + "nuxt": { name: "Nuxt", color:"background-color : white", icon: "img/badges/nuxt.svg"}, "my-linkedin": { name: "Tom Howarth", color:"background-color : white", icon: "https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/LinkedIn_logo_initials.png/960px-LinkedIn_logo_initials.png"}, "my-email": { name: "tomhowarth23@gmail.com", color:"background-color : white", icon: "https://static-00.iconduck.com/assets.00/email-circle-fill-icon-2048x2048-pa63yusl.png"}, - "airtable": { name: "Airtable", color:"background-color : white", icon: "https://www.svgrepo.com/show/353383/airtable.svg"}, - "threejs": { name: "Three.js", color:"background-color : white", icon: "https://canada1.discourse-cdn.com/flex035/uploads/threejs/optimized/2X/e/e4f86d2200d2d35c30f7b1494e96b9595ebc2751_2_1016x1024.png"}, - "steam": { name: "Steam API", color:"background-color : white", icon: "https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/Steam_icon_logo.svg/2048px-Steam_icon_logo.svg.png"}, - "prototype":{name: "Prototype", color:"background-color : CornflowerBlue", icon:"https://cdn-icons-png.flaticon.com/512/6941/6941302.png"}, + "airtable": { name: "Airtable", color:"background-color : white", icon: "img/badges/airtable.svg"}, + "threejs": { name: "Three.js", color:"background-color : white", icon: "img/badges/three.png"}, + "steam": { name: "Steam API", color:"background-color : white", icon: "img/badges/steam.png"}, + "prototype":{name: "Prototype", color:"background-color : CornflowerBlue", icon:"img/badges/prototype.png"}, }; // i wanna add some sort of data here, likely a dictionary, that matches a string to a Display name, Icon and Color for a badge diff --git a/public/img/badges/airtable.svg b/public/img/badges/airtable.svg new file mode 100644 index 0000000..5f4c223 --- /dev/null +++ b/public/img/badges/airtable.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/img/badges/gamejam.webp b/public/img/badges/gamejam.webp new file mode 100644 index 0000000..ea3199c Binary files /dev/null and b/public/img/badges/gamejam.webp differ diff --git a/public/img/badges/godot.png b/public/img/badges/godot.png new file mode 100644 index 0000000..a0ff597 Binary files /dev/null and b/public/img/badges/godot.png differ diff --git a/public/img/badges/nuxt.svg b/public/img/badges/nuxt.svg new file mode 100644 index 0000000..a9252a4 --- /dev/null +++ b/public/img/badges/nuxt.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/public/img/badges/prototype.png b/public/img/badges/prototype.png new file mode 100644 index 0000000..1bbca78 Binary files /dev/null and b/public/img/badges/prototype.png differ diff --git a/public/img/badges/steam.png b/public/img/badges/steam.png new file mode 100644 index 0000000..e3b4bc0 Binary files /dev/null and b/public/img/badges/steam.png differ diff --git a/public/img/badges/three.png b/public/img/badges/three.png new file mode 100644 index 0000000..a2455ba Binary files /dev/null and b/public/img/badges/three.png differ diff --git a/public/img/badges/unity.png b/public/img/badges/unity.png new file mode 100644 index 0000000..9f6c9ea Binary files /dev/null and b/public/img/badges/unity.png differ diff --git a/public/img/badges/vue.png b/public/img/badges/vue.png new file mode 100644 index 0000000..48b911c Binary files /dev/null and b/public/img/badges/vue.png differ