- update skills

This commit is contained in:
Kamil Niemczycki 2023-08-04 17:14:06 +02:00
parent 8b0d0b4400
commit 3050f10f95
Signed by: kamilniemczycki
GPG Key ID: 04D4E2012F969213
2 changed files with 21 additions and 20 deletions

View File

@ -36,7 +36,7 @@ const otherSkills = ref(importOtherSkills);
<template> <template>
<div class="px-4 py-3"> <div class="px-4 py-3">
<h2 class="text-xl text-[#E57D4C] pb-2">Główne umiejętności</h2> <h2 class="text-xl text-[#E57D4C] pb-2">Główne umiejętności</h2>
<ul class="flex flex-row flex-wrap justify-center align-baseline gap-4 text-xl"> <ul class="grid grid-cols-4 justify-between align-baseline gap-2 text-xl">
<li <li
v-for="(skill, key) in skills" v-for="(skill, key) in skills"
:key="key" :key="key"
@ -48,7 +48,7 @@ const otherSkills = ref(importOtherSkills);
</ul> </ul>
<div class="mt-3"> <div class="mt-3">
<h3 class="text-lg text-[#E57D4C] pb-1">Dodatkowo</h3> <h3 class="text-lg text-[#E57D4C] pb-1">Dodatkowo</h3>
<ul class="flex flex-row flex-wrap align-baseline gap-1"> <ul class="flex flex-row flex-wrap align-baseline gap-0.5">
<li v-for="(skill, key) in otherSkills" :key="key" class="border border-slate-200 rounded-md px-1.5 py-0.5 bg-white">{{ skill }}</li> <li v-for="(skill, key) in otherSkills" :key="key" class="border border-slate-200 rounded-md px-1.5 py-0.5 bg-white">{{ skill }}</li>
</ul> </ul>
</div> </div>

View File

@ -1,52 +1,52 @@
const skills = [ const skills = [
{
class: 'linux',
faIcon: ['fab', 'linux'],
title: 'Ikona Linux',
text: 'GNU/Linux',
},
{
class: 'git',
faIcon: ['fab', 'git'],
title: 'Ikona Git',
text: 'Git',
},
{ {
class: 'php', class: 'php',
faIcon: ['fab', 'php'], faIcon: ['fab', 'php'],
title: 'PHP Icon', title: 'Ikona PHP',
text: 'PHP 7/8', text: 'PHP 7/8',
}, },
{ {
class: 'laravel', class: 'laravel',
faIcon: ['fab', 'laravel'], faIcon: ['fab', 'laravel'],
title: 'Laravel Icon', title: 'Ikona Laravel',
text: 'Laravel', text: 'Laravel',
}, },
{ {
class: 'js', class: 'js',
faIcon: ['fab', 'js'], faIcon: ['fab', 'js'],
title: 'JavaScript Icon', title: 'Ikona JavaScript',
text: 'JavaScript', text: 'JavaScript',
}, },
{ {
class: 'vuejs', class: 'vuejs',
faIcon: ['fab', 'vuejs'], faIcon: ['fab', 'vuejs'],
title: 'Vue.js Icon', title: 'Ikona Vue.js',
text: 'Vue.js', text: 'Vue.js',
}, },
{ {
class: 'html5', class: 'html5',
faIcon: ['fab', 'html5'], faIcon: ['fab', 'html5'],
title: 'HTML 5 Icon', title: 'Ikona HTML 5',
text: 'HTML', text: 'HTML',
}, },
{ {
class: 'css3-alt', class: 'css3-alt',
faIcon: ['fab', 'css3-alt'], faIcon: ['fab', 'css3-alt'],
title: 'CSS 3 Icon', title: 'Ikona CSS 3',
text: 'CSS', text: 'CSS',
}, },
{
class: 'git',
faIcon: ['fab', 'git'],
title: 'Git Icon',
text: 'Git',
},
{
class: 'linux',
faIcon: ['fab', 'linux'],
title: 'Linux Icon',
text: 'GNU/Linux',
},
]; ];
const otherSkills = [ const otherSkills = [
@ -63,6 +63,7 @@ const otherSkills = [
'WSL', 'WSL',
'LXC/LXD', 'LXC/LXD',
'REST', 'REST',
'RWD',
'i więcej...', 'i więcej...',
]; ];