diff --git a/src/components/TechIcon.astro b/src/components/TechIcon.astro index b63af57..fb6d828 100644 --- a/src/components/TechIcon.astro +++ b/src/components/TechIcon.astro @@ -18,6 +18,8 @@ import { Svelte, Git, Nodedotjs, + Vuedotjs, + Figma, } from 'simple-icons-astro'; export interface Props { @@ -44,6 +46,8 @@ const map: Record = { svelte: Svelte, git: Git, nodedotjs: Nodedotjs, + vue: Vuedotjs, + figma: Figma, }; const Icon = map[name]; diff --git a/src/pages/index.astro b/src/pages/index.astro index b9290fa..ce00f41 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -27,6 +27,7 @@ const capabilities = [ const instruments = [ { icon: 'astro', label: 'Astro' }, + { icon: 'vue', label: 'Vue.js'}, { icon: 'typescript', label: 'TypeScript' }, { icon: 'javascript', label: 'JavaScript' }, { icon: 'sass', label: 'Sass' }, @@ -38,6 +39,8 @@ const instruments = [ { icon: 'rust', label: 'Rust' }, { icon: 'python', label: 'Python' }, { icon: 'git', label: 'Git' }, + { icon: 'nodedotjs', label: 'Node.js' }, + { icon: 'figma', label: 'Figma' }, ]; ---