diff --git a/Skills.ts b/Skills.ts
index 3659fbf..0a6b4ce 100644
--- a/Skills.ts
+++ b/Skills.ts
@@ -1,24 +1,24 @@
-const jsImg = '/img/skills/javascript.svg'
-const tsImg = '/img/skills/typescript.svg'
-const vueImg = '/img/skills/vue.svg'
-const reactImg = '/img/skills/react.svg'
-const postCssImg = '/img/skills/postcss.svg'
-const scssImg = '/img/skills/sass.svg'
-const cssImg = '/img/skills/css.svg'
-const htmlImg = '/img/skills/html.svg'
-const phaserImg = '/img/skills/phaser.png'
-const unityImg = '/img/skills/unity.png'
-const csImg = '/img/skills/cs.svg'
-const aseImg = '/img/skills/aseprite.png'
-const glImg = '/img/skills/gitlab.svg'
-const vitestImg = '/img/skills/vitest.svg'
-const njsImg = '/img/skills/nodejs.svg'
-const ngImg = '/img/skills/angular.svg'
-const javaImg = '/img/skills/java.svg'
-const jetbrainsImg = '/img/skills/jetbrains.svg'
-const nuxtImg = '/img/skills/nuxt.svg'
-const twImg = '/img/skills/tw.svg'
-const rustImg = '/img/skills/rust.svg'
+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
diff --git a/components/Customers/Customers.vue b/components/Customers/Customers.vue
index bfc2ecf..645fc9a 100644
--- a/components/Customers/Customers.vue
+++ b/components/Customers/Customers.vue
@@ -39,25 +39,25 @@ import { ase, cs, css, html, js, ng, njs, nuxt, phaser, scss, ts, tw, unity, vue
const customers = [
{
name: 'Dekra',
- logo: '/img/customers/dekra.png',
+ logo: '/img/customers/dekra.webp',
link: 'https://dekra.de'
}, {
name: 'Bounce Commerce',
- logo: '/img/customers/bounce.png',
+ logo: '/img/customers/bounce.webp',
link: 'https://bounce-commerce.de',
white: true,
}, {
name: 'GMX',
- logo: '/img/customers/gmx.png',
+ logo: '/img/customers/gmx.webp',
link: 'https://gmx.net',
white: true,
}, {
name: 'WEB.DE',
- logo: '/img/customers/webde.png',
+ logo: '/img/customers/webde.webp',
link: 'https://web.de',
}, {
name: '1&1',
- logo: '/img/customers/einsundeins.png',
+ logo: '/img/customers/einsundeins.webp',
link: 'https://1und1.de',
}, {
name: 'Körrie',
@@ -65,12 +65,12 @@ const customers = [
link: 'https://körrie.de',
}, {
name: 'Pembe',
- logo: '/img/customers/pembe.svg',
+ logo: '/img/customers/pembe.webp',
link: 'https://pembe.io',
white: true,
}, {
name: 'SAE Institute Germany',
- logo: '/img/customers/sae.png',
+ logo: '/img/customers/sae.webp',
link: 'https://www.sae.edu/deu/en/sae-home/',
white: true,
}
@@ -80,7 +80,7 @@ const projects = [
{
title: 'Unterricht',
customer: 'SAE Institute Germany',
- image: '/img/projects/education.jpg',
+ image: '/img/projects/education.webp',
desc: [
'Vorbereitung und Durchführung von Unterricht in JavaScript und TypeScript.',
],
@@ -89,7 +89,7 @@ const projects = [
title: 'Headless CMS & Cache',
customer: 'Dekra',
link: 'https://dekra.de',
- image: '/img/projects/dekra.png',
+ image: '/img/projects/dekra.webp',
desc: [
'Anbindung an ein Headless CMS und Entwicklung der dazugehörigen Komponentenbibliothek, sowie Serverseitiges Caching.',
],
@@ -99,7 +99,7 @@ const projects = [
title: 'Bounce Script',
customer: 'Bounce Commerce',
link: 'https://bounce-commerce.de',
- image: '/img/projects/bounce.jpg',
+ image: '/img/projects/bounce.webp',
desc: [
'Script zum Einbinden in Web Shops für Bounce Management.',
'Pures JavaScript, so klein gehalten wie möglich zur einfach Integration.',
@@ -131,7 +131,7 @@ const projects = [
title: 'UI Tools',
customer: 'webfussel',
link: 'https://uitools.webfussel.de',
- image: '/img/projects/uitools.png',
+ image: '/img/projects/uitools.webp',
desc: [
'Eine kleine Sammlung an Tools für die Erstellung von UIs:',
'Farbpalette, Kontraste und CSS Variablen.',
diff --git a/components/Intro/Intro.css b/components/Intro/Intro.css
index 5277080..2fc7d0b 100644
--- a/components/Intro/Intro.css
+++ b/components/Intro/Intro.css
@@ -29,6 +29,14 @@
}
}
+@media (width <= 430px) {
+ .Intro {
+ .intro-img{
+ width: 430px;
+ }
+ }
+}
+
@media (width < 900px) {
.Intro {
grid-template-columns: 1fr;
diff --git a/components/Intro/Intro.vue b/components/Intro/Intro.vue
index ee41242..94e62e0 100644
--- a/components/Intro/Intro.vue
+++ b/components/Intro/Intro.vue
@@ -24,7 +24,10 @@
-

+
+
+
+
diff --git a/components/Services/Services.vue b/components/Services/Services.vue
index e54ffdb..9e35b4f 100644
--- a/components/Services/Services.vue
+++ b/components/Services/Services.vue
@@ -94,25 +94,25 @@ const shuffle = (unshuffled : T[]) => unshuffled
const network = shuffle([
{
name: 'Robert Janus',
- img: '/img/network/robert.jpg',
+ img: '/img/network/robert.webp',
tags: ['Digitalberatung', 'Webentwicklung', 'eCommerce'],
flavour: 'Website, SEO und Conversions. Auf einen Klick.',
link: 'https://robertjanus.de/webertoire',
}, {
name: 'Matthias Lehmann',
- img: '/img/network/matthias.jpg',
+ img: '/img/network/matthias.webp',
tags: ['Onlineportale für Patienten', 'Kunden', 'Mitarbeiter'],
flavour: 'Software die macht, was DU willst!',
link: 'https://mind-deploy.de',
}, {
name: 'Maximilian Schluer',
- img: '/img/network/maximilian.jpg',
+ img: '/img/network/maximilian.webp',
tags: ['iOS Development', 'Software-QA'],
flavour: 'Kann dein iOS-Team unterstützen oder dein Software-Qualitätsproblem lösen – egal welches.',
link: 'https://max-shluer.de',
}, {
name: 'Maria Salcedo',
- img: '/img/network/maria.jpg',
+ img: '/img/network/maria.webp',
tags: ['Backend', 'DevOps', 'Architektur'],
flavour: 'Effizient und kommunikativ. "You build it, you run it."',
link: 'https://masagu.dev',
diff --git a/public/img/customers/bounce.png b/public/img/customers/bounce.png
deleted file mode 100644
index b525828..0000000
Binary files a/public/img/customers/bounce.png and /dev/null differ
diff --git a/public/img/customers/bounce.webp b/public/img/customers/bounce.webp
new file mode 100644
index 0000000..c7b93d1
Binary files /dev/null and b/public/img/customers/bounce.webp differ
diff --git a/public/img/customers/dekra.png b/public/img/customers/dekra.png
deleted file mode 100644
index 778a285..0000000
Binary files a/public/img/customers/dekra.png and /dev/null differ
diff --git a/public/img/customers/dekra.webp b/public/img/customers/dekra.webp
new file mode 100644
index 0000000..44a5e79
Binary files /dev/null and b/public/img/customers/dekra.webp differ
diff --git a/public/img/customers/einsundeins.png b/public/img/customers/einsundeins.png
deleted file mode 100644
index a1bcd6b..0000000
Binary files a/public/img/customers/einsundeins.png and /dev/null differ
diff --git a/public/img/customers/einsundeins.webp b/public/img/customers/einsundeins.webp
new file mode 100644
index 0000000..1126bc4
Binary files /dev/null and b/public/img/customers/einsundeins.webp differ
diff --git a/public/img/customers/gmx.png b/public/img/customers/gmx.png
deleted file mode 100644
index 4f175a7..0000000
Binary files a/public/img/customers/gmx.png and /dev/null differ
diff --git a/public/img/customers/gmx.webp b/public/img/customers/gmx.webp
new file mode 100644
index 0000000..89199aa
Binary files /dev/null and b/public/img/customers/gmx.webp differ
diff --git a/public/img/customers/koerrie.webp b/public/img/customers/koerrie.webp
index 661353f..78aaefc 100644
Binary files a/public/img/customers/koerrie.webp and b/public/img/customers/koerrie.webp differ
diff --git a/public/img/customers/pembe.svg b/public/img/customers/pembe.svg
deleted file mode 100644
index 1cfd9bf..0000000
--- a/public/img/customers/pembe.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/public/img/customers/pembe.webp b/public/img/customers/pembe.webp
new file mode 100644
index 0000000..e1376d4
Binary files /dev/null and b/public/img/customers/pembe.webp differ
diff --git a/public/img/customers/sae.png b/public/img/customers/sae.png
deleted file mode 100644
index dbf8e0b..0000000
Binary files a/public/img/customers/sae.png and /dev/null differ
diff --git a/public/img/customers/sae.webp b/public/img/customers/sae.webp
new file mode 100644
index 0000000..a923af8
Binary files /dev/null and b/public/img/customers/sae.webp differ
diff --git a/public/img/customers/webde.png b/public/img/customers/webde.png
deleted file mode 100644
index 09d9538..0000000
Binary files a/public/img/customers/webde.png and /dev/null differ
diff --git a/public/img/customers/webde.webp b/public/img/customers/webde.webp
new file mode 100644
index 0000000..88647ca
Binary files /dev/null and b/public/img/customers/webde.webp differ
diff --git a/public/img/network/maria.webp b/public/img/network/maria.webp
new file mode 100644
index 0000000..96b9332
Binary files /dev/null and b/public/img/network/maria.webp differ
diff --git a/public/img/network/matthias.jpg b/public/img/network/matthias.jpg
deleted file mode 100644
index 1807e06..0000000
Binary files a/public/img/network/matthias.jpg and /dev/null differ
diff --git a/public/img/network/matthias.webp b/public/img/network/matthias.webp
new file mode 100644
index 0000000..24f5c7c
Binary files /dev/null and b/public/img/network/matthias.webp differ
diff --git a/public/img/network/maximilian.webp b/public/img/network/maximilian.webp
new file mode 100644
index 0000000..8527390
Binary files /dev/null and b/public/img/network/maximilian.webp differ
diff --git a/public/img/network/robert.jpg b/public/img/network/robert.jpg
deleted file mode 100644
index 0a4dc0a..0000000
Binary files a/public/img/network/robert.jpg and /dev/null differ
diff --git a/public/img/network/robert.webp b/public/img/network/robert.webp
new file mode 100644
index 0000000..60b78e4
Binary files /dev/null and b/public/img/network/robert.webp differ
diff --git a/public/profile.webp b/public/img/profile_big.webp
similarity index 100%
rename from public/profile.webp
rename to public/img/profile_big.webp
diff --git a/public/img/profile_small.webp b/public/img/profile_small.webp
new file mode 100644
index 0000000..99f00e2
Binary files /dev/null and b/public/img/profile_small.webp differ
diff --git a/public/img/projects/bounce.jpg b/public/img/projects/bounce.jpg
deleted file mode 100644
index c662846..0000000
Binary files a/public/img/projects/bounce.jpg and /dev/null differ
diff --git a/public/img/projects/bounce.webp b/public/img/projects/bounce.webp
new file mode 100644
index 0000000..a57961b
Binary files /dev/null and b/public/img/projects/bounce.webp differ
diff --git a/public/img/projects/dekra.png b/public/img/projects/dekra.png
deleted file mode 100644
index e860b61..0000000
Binary files a/public/img/projects/dekra.png and /dev/null differ
diff --git a/public/img/projects/dekra.webp b/public/img/projects/dekra.webp
new file mode 100644
index 0000000..97247bf
Binary files /dev/null and b/public/img/projects/dekra.webp differ
diff --git a/public/img/projects/education.jpg b/public/img/projects/education.jpg
deleted file mode 100644
index fb6c50b..0000000
Binary files a/public/img/projects/education.jpg and /dev/null differ
diff --git a/public/img/projects/education.webp b/public/img/projects/education.webp
new file mode 100644
index 0000000..ec5ea6c
Binary files /dev/null and b/public/img/projects/education.webp differ
diff --git a/public/img/projects/krrie.webp b/public/img/projects/krrie.webp
index deb5788..efca98c 100644
Binary files a/public/img/projects/krrie.webp and b/public/img/projects/krrie.webp differ
diff --git a/public/img/projects/pp.webp b/public/img/projects/pp.webp
index c1a6f30..0540a2e 100644
Binary files a/public/img/projects/pp.webp and b/public/img/projects/pp.webp differ
diff --git a/public/img/projects/shnaik.webp b/public/img/projects/shnaik.webp
index 65e09df..4647056 100644
Binary files a/public/img/projects/shnaik.webp and b/public/img/projects/shnaik.webp differ
diff --git a/public/img/projects/twitsplit.webp b/public/img/projects/twitsplit.webp
deleted file mode 100644
index 2c407e1..0000000
Binary files a/public/img/projects/twitsplit.webp and /dev/null differ
diff --git a/public/img/projects/uitools.png b/public/img/projects/uitools.png
deleted file mode 100644
index d085005..0000000
Binary files a/public/img/projects/uitools.png and /dev/null differ
diff --git a/public/img/projects/uitools.webp b/public/img/projects/uitools.webp
new file mode 100644
index 0000000..cff571a
Binary files /dev/null and b/public/img/projects/uitools.webp differ
diff --git a/public/img/projects/webde.webp b/public/img/projects/webde.webp
index 7dc8775..dcb5427 100644
Binary files a/public/img/projects/webde.webp and b/public/img/projects/webde.webp differ
diff --git a/public/img/projects/worldgen.webp b/public/img/projects/worldgen.webp
index 6ae1667..0087c79 100644
Binary files a/public/img/projects/worldgen.webp and b/public/img/projects/worldgen.webp differ
diff --git a/public/img/skills/angular.svg b/public/img/skills/angular.svg
deleted file mode 100644
index 2c6890f..0000000
--- a/public/img/skills/angular.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
diff --git a/public/img/skills/angular.webp b/public/img/skills/angular.webp
new file mode 100644
index 0000000..36d4cec
Binary files /dev/null and b/public/img/skills/angular.webp differ
diff --git a/public/img/skills/aseprite.png b/public/img/skills/aseprite.png
deleted file mode 100644
index 4a25d0e..0000000
Binary files a/public/img/skills/aseprite.png and /dev/null differ
diff --git a/public/img/skills/aseprite.webp b/public/img/skills/aseprite.webp
new file mode 100644
index 0000000..55c7fde
Binary files /dev/null and b/public/img/skills/aseprite.webp differ
diff --git a/public/img/skills/cs.svg b/public/img/skills/cs.svg
deleted file mode 100644
index aa039b5..0000000
--- a/public/img/skills/cs.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-
\ No newline at end of file
diff --git a/public/img/skills/cs.webp b/public/img/skills/cs.webp
new file mode 100644
index 0000000..4b78e33
Binary files /dev/null and b/public/img/skills/cs.webp differ
diff --git a/public/img/skills/css.svg b/public/img/skills/css.svg
deleted file mode 100644
index 79c47a9..0000000
--- a/public/img/skills/css.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/img/skills/css.webp b/public/img/skills/css.webp
new file mode 100644
index 0000000..a5a6469
Binary files /dev/null and b/public/img/skills/css.webp differ
diff --git a/public/img/skills/gitlab.svg b/public/img/skills/gitlab.svg
deleted file mode 100644
index cb14989..0000000
--- a/public/img/skills/gitlab.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/public/img/skills/gitlab.webp b/public/img/skills/gitlab.webp
new file mode 100644
index 0000000..ea75d1b
Binary files /dev/null and b/public/img/skills/gitlab.webp differ
diff --git a/public/img/skills/gulp.svg b/public/img/skills/gulp.svg
deleted file mode 100644
index 5fbd2d8..0000000
--- a/public/img/skills/gulp.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
diff --git a/public/img/skills/html.svg b/public/img/skills/html.svg
deleted file mode 100644
index c62fabb..0000000
--- a/public/img/skills/html.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/img/skills/html.webp b/public/img/skills/html.webp
new file mode 100644
index 0000000..0e07ff1
Binary files /dev/null and b/public/img/skills/html.webp differ
diff --git a/public/img/skills/ie.svg b/public/img/skills/ie.svg
deleted file mode 100644
index 108213f..0000000
--- a/public/img/skills/ie.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
\ No newline at end of file
diff --git a/public/img/skills/jasmine.svg b/public/img/skills/jasmine.svg
deleted file mode 100644
index a0dbbd8..0000000
--- a/public/img/skills/jasmine.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
diff --git a/public/img/skills/java.svg b/public/img/skills/java.svg
deleted file mode 100644
index dfa38c5..0000000
--- a/public/img/skills/java.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/public/img/skills/java.webp b/public/img/skills/java.webp
new file mode 100644
index 0000000..e6659ea
Binary files /dev/null and b/public/img/skills/java.webp differ
diff --git a/public/img/skills/javascript.svg b/public/img/skills/javascript.svg
deleted file mode 100644
index 9218b96..0000000
--- a/public/img/skills/javascript.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
diff --git a/public/img/skills/javascript.webp b/public/img/skills/javascript.webp
new file mode 100644
index 0000000..1c4fbb9
Binary files /dev/null and b/public/img/skills/javascript.webp differ
diff --git a/public/img/skills/jest.svg b/public/img/skills/jest.svg
deleted file mode 100644
index 8efda35..0000000
--- a/public/img/skills/jest.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/public/img/skills/jetbrains.svg b/public/img/skills/jetbrains.svg
deleted file mode 100644
index f1c6c5e..0000000
--- a/public/img/skills/jetbrains.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/img/skills/jetbrains.webp b/public/img/skills/jetbrains.webp
new file mode 100644
index 0000000..8d206f5
Binary files /dev/null and b/public/img/skills/jetbrains.webp differ
diff --git a/public/img/skills/karma.svg b/public/img/skills/karma.svg
deleted file mode 100644
index 9c46587..0000000
--- a/public/img/skills/karma.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
diff --git a/public/img/skills/nodejs.svg b/public/img/skills/nodejs.svg
deleted file mode 100644
index e1ac7ce..0000000
--- a/public/img/skills/nodejs.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
diff --git a/public/img/skills/nodejs.webp b/public/img/skills/nodejs.webp
new file mode 100644
index 0000000..5b0dc38
Binary files /dev/null and b/public/img/skills/nodejs.webp differ
diff --git a/public/img/skills/nuxt.svg b/public/img/skills/nuxt.svg
deleted file mode 100644
index ff4336a..0000000
--- a/public/img/skills/nuxt.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-
diff --git a/public/img/skills/nuxt.webp b/public/img/skills/nuxt.webp
new file mode 100644
index 0000000..959ad50
Binary files /dev/null and b/public/img/skills/nuxt.webp differ
diff --git a/public/img/skills/phaser.png b/public/img/skills/phaser.png
deleted file mode 100644
index 6dcef8e..0000000
Binary files a/public/img/skills/phaser.png and /dev/null differ
diff --git a/public/img/skills/phaser.webp b/public/img/skills/phaser.webp
new file mode 100644
index 0000000..3d537ac
Binary files /dev/null and b/public/img/skills/phaser.webp differ
diff --git a/public/img/skills/php.svg b/public/img/skills/php.svg
deleted file mode 100644
index 40f58d8..0000000
--- a/public/img/skills/php.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/public/img/skills/postcss.svg b/public/img/skills/postcss.svg
deleted file mode 100644
index b19d3d7..0000000
--- a/public/img/skills/postcss.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/img/skills/postcss.webp b/public/img/skills/postcss.webp
new file mode 100644
index 0000000..0f61a99
Binary files /dev/null and b/public/img/skills/postcss.webp differ
diff --git a/public/img/skills/protactor.svg b/public/img/skills/protactor.svg
deleted file mode 100644
index 7554bbb..0000000
--- a/public/img/skills/protactor.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/public/img/skills/react.svg b/public/img/skills/react.svg
deleted file mode 100644
index a604a7a..0000000
--- a/public/img/skills/react.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
diff --git a/public/img/skills/react.webp b/public/img/skills/react.webp
new file mode 100644
index 0000000..fe62859
Binary files /dev/null and b/public/img/skills/react.webp differ
diff --git a/public/img/skills/rust.svg b/public/img/skills/rust.svg
deleted file mode 100644
index 2ece92a..0000000
--- a/public/img/skills/rust.svg
+++ /dev/null
@@ -1,61 +0,0 @@
-
diff --git a/public/img/skills/rust.webp b/public/img/skills/rust.webp
new file mode 100644
index 0000000..7e34292
Binary files /dev/null and b/public/img/skills/rust.webp differ
diff --git a/public/img/skills/sass.svg b/public/img/skills/sass.svg
deleted file mode 100644
index 681513d..0000000
--- a/public/img/skills/sass.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
diff --git a/public/img/skills/sass.webp b/public/img/skills/sass.webp
new file mode 100644
index 0000000..789249e
Binary files /dev/null and b/public/img/skills/sass.webp differ
diff --git a/public/img/skills/tw.svg b/public/img/skills/tw.svg
deleted file mode 100644
index 3a20a9e..0000000
--- a/public/img/skills/tw.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/public/img/skills/tw.webp b/public/img/skills/tw.webp
new file mode 100644
index 0000000..a93b871
Binary files /dev/null and b/public/img/skills/tw.webp differ
diff --git a/public/img/skills/typescript.svg b/public/img/skills/typescript.svg
deleted file mode 100644
index 3978701..0000000
--- a/public/img/skills/typescript.svg
+++ /dev/null
@@ -1,6 +0,0 @@
-
diff --git a/public/img/skills/typescript.webp b/public/img/skills/typescript.webp
new file mode 100644
index 0000000..71e80be
Binary files /dev/null and b/public/img/skills/typescript.webp differ
diff --git a/public/img/skills/unity.png b/public/img/skills/unity.png
deleted file mode 100644
index 7b31b40..0000000
Binary files a/public/img/skills/unity.png and /dev/null differ
diff --git a/public/img/skills/unity.webp b/public/img/skills/unity.webp
new file mode 100644
index 0000000..5121a13
Binary files /dev/null and b/public/img/skills/unity.webp differ
diff --git a/public/img/skills/vitest.svg b/public/img/skills/vitest.svg
deleted file mode 100644
index 1bd07d5..0000000
--- a/public/img/skills/vitest.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
diff --git a/public/img/skills/vitest.webp b/public/img/skills/vitest.webp
new file mode 100644
index 0000000..f8d1808
Binary files /dev/null and b/public/img/skills/vitest.webp differ
diff --git a/public/img/skills/vue.svg b/public/img/skills/vue.svg
deleted file mode 100644
index 6a0ca83..0000000
--- a/public/img/skills/vue.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
\ No newline at end of file
diff --git a/public/img/skills/vue.webp b/public/img/skills/vue.webp
new file mode 100644
index 0000000..6e289ed
Binary files /dev/null and b/public/img/skills/vue.webp differ