fix: adding missing tools
Deploy Documentation / check-and-deploy (push) Successful in 13s

This commit is contained in:
2026-06-24 20:24:25 +02:00
parent deb3b8b1d2
commit 6725a4accd
2 changed files with 7 additions and 0 deletions
+4
View File
@@ -18,6 +18,8 @@ import {
Svelte, Svelte,
Git, Git,
Nodedotjs, Nodedotjs,
Vuedotjs,
Figma,
} from 'simple-icons-astro'; } from 'simple-icons-astro';
export interface Props { export interface Props {
@@ -44,6 +46,8 @@ const map: Record<string, any> = {
svelte: Svelte, svelte: Svelte,
git: Git, git: Git,
nodedotjs: Nodedotjs, nodedotjs: Nodedotjs,
vue: Vuedotjs,
figma: Figma,
}; };
const Icon = map[name]; const Icon = map[name];
+3
View File
@@ -27,6 +27,7 @@ const capabilities = [
const instruments = [ const instruments = [
{ icon: 'astro', label: 'Astro' }, { icon: 'astro', label: 'Astro' },
{ icon: 'vue', label: 'Vue.js'},
{ icon: 'typescript', label: 'TypeScript' }, { icon: 'typescript', label: 'TypeScript' },
{ icon: 'javascript', label: 'JavaScript' }, { icon: 'javascript', label: 'JavaScript' },
{ icon: 'sass', label: 'Sass' }, { icon: 'sass', label: 'Sass' },
@@ -38,6 +39,8 @@ const instruments = [
{ icon: 'rust', label: 'Rust' }, { icon: 'rust', label: 'Rust' },
{ icon: 'python', label: 'Python' }, { icon: 'python', label: 'Python' },
{ icon: 'git', label: 'Git' }, { icon: 'git', label: 'Git' },
{ icon: 'nodedotjs', label: 'Node.js' },
{ icon: 'figma', label: 'Figma' },
]; ];
--- ---