wf4/Skills.ts
2024-05-24 09:01:22 +02:00

49 lines
2.5 KiB
TypeScript

const jsImg = '/img/skills/javascript.webp'
const tsImg = '/img/skills/typescript.webp'
const vueImg = '/img/skills/vue.webp'
const reactImg = '/img/skills/react.webp'
const postCssImg = '/img/skills/postcss.webp'
const scssImg = '/img/skills/sass.webp'
const cssImg = '/img/skills/css.webp'
const htmlImg = '/img/skills/html.webp'
const phaserImg = '/img/skills/phaser.webp'
const unityImg = '/img/skills/unity.webp'
const csImg = '/img/skills/cs.webp'
const aseImg = '/img/skills/aseprite.webp'
const glImg = '/img/skills/gitlab.webp'
const vitestImg = '/img/skills/vitest.webp'
const njsImg = '/img/skills/nodejs.webp'
const ngImg = '/img/skills/angular.webp'
const javaImg = '/img/skills/java.webp'
const jetbrainsImg = '/img/skills/jetbrains.webp'
const nuxtImg = '/img/skills/nuxt.webp'
const twImg = '/img/skills/tw.webp'
const rustImg = '/img/skills/rust.webp'
export type ISkill = {
name: string
img: string
link ?: string
}
export const js: ISkill = {name: 'JavaScript', img: jsImg}
export const ts: ISkill = {name: 'TypeScript', img: tsImg, link: 'https://www.typescriptlang.org'}
export const vue: ISkill = {name: 'Vuejs', img: vueImg, link: 'https://vuejs.org'}
export const react: ISkill = {name: 'React', img: reactImg, link: 'https://reactjs.org'}
export const pcss: ISkill = {name: 'PostCSS', img: postCssImg, link: 'https://postcss.org'}
export const scss: ISkill = {name: 'SCSS', img: scssImg}
export const css: ISkill = {name: 'CSS', img: cssImg}
export const html: ISkill = {name: 'HTML', img: htmlImg}
export const phaser: ISkill = {name: 'Phaser 3', img: phaserImg}
export const unity: ISkill = {name: 'Unity 3D', img: unityImg}
export const cs: ISkill = {name: 'C#', img: csImg}
export const ase: ISkill = {name: 'Aseprite', img: aseImg}
export const gl: ISkill = {name: 'GitLab', img: glImg, link: 'https://gitlab.com'}
export const vitest: ISkill = {name: 'Vitest', img: vitestImg, link: 'https://vitest.dev'}
export const njs: ISkill = {name: 'Nodejs', img: njsImg, link: 'https://nodejs.org/en'}
export const ng: ISkill = {name: 'Angular', img: ngImg}
export const java: ISkill = {name: 'Java', img: javaImg, link: 'https://www.java.com/de/'}
export const rust: ISkill = {name: 'Rust', img: rustImg, link: 'https://www.rust-lang.org'}
export const jetbrains: ISkill = {name: 'JetBrains IDEs', img: jetbrainsImg, link: 'https://www.jetbrains.com'}
export const nuxt: ISkill = {name: 'Nuxt', img: nuxtImg, link: 'https://nuxt.com'}
export const tw: ISkill = {name: 'Tailwind', img: twImg}