Skip to content

Commit dcb024f

Browse files
committed
add more techs
1 parent cdc8965 commit dcb024f

2 files changed

Lines changed: 31 additions & 8 deletions

File tree

src/components/TechnologiesListFeature.vue

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,24 @@ defineProps<{
4141
'items-center',
4242
'py-4',
4343
'btn',
44+
'btn-soft',
4445
'btn-square',
4546
'tooltip',
4647
]"
4748
>
4849
<Icon
4950
:icon="item.icon"
50-
class="size-20 max-h-12 group-hover/project-item:scale-110 transition-transform duration-300"
51+
:class="[
52+
'size-16',
53+
'max-h-12',
54+
'will-change-transform',
55+
'transition-all',
56+
'duration-100',
57+
'saturate-0',
58+
'group-hover/project-item:scale-110',
59+
'group-hover/project-item:saturate-100',
60+
item.icon.includes('next') && 'fill-transparent group-hover/project-item:fill-inherit',
61+
]"
5162
/>
5263
<!-- <span>{{ item.label }}</span> -->
5364
</div>

src/data/Tecnologias.ts

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,28 @@ export const Tecnologias = [
55
icon: "logos:laravel",
66
recommended: true
77
},
8+
{
9+
label: "HTML",
10+
target: "https://www.w3.org/html/",
11+
icon: "vscode-icons:file-type-html",
12+
recommended: true
13+
},
814
{
915
label: "CSS",
10-
target: "https://html.com/",
11-
icon: "logos:html-5",
16+
target: "https://www.w3.org/Style/CSS/",
17+
icon: "vscode-icons:file-type-css2",
1218
recommended: true
1319
},
1420
{
1521
label: 'PHP',
1622
target: 'https://php.net/',
17-
icon: 'logos:php',
23+
icon: 'ri:php-line',
24+
recommended: true
25+
},
26+
{
27+
label: 'WordPress',
28+
target: 'https://wordpress.org/',
29+
icon: 'ic:baseline-wordpress',
1830
recommended: true
1931
},
2032
{
@@ -56,25 +68,25 @@ export const Tecnologias = [
5668
{
5769
label: 'GitHub',
5870
target: 'https://github.com/',
59-
icon: 'logos:github-icon',
71+
icon: 'mdi:github',
6072
recommended: true
6173
},
6274
{
6375
label: 'AWS',
6476
target: 'https://aws.amazon.com/',
65-
icon: 'logos:aws',
77+
icon: 'mdi:aws',
6678
recommended: true
6779
},
6880
{
6981
label: 'Docker',
7082
target: 'https://www.docker.com/',
71-
icon: 'logos:docker-icon',
83+
icon: 'material-icon-theme:docker',
7284
recommended: true
7385
},
7486
{
7587
label: 'Linux',
7688
target: 'https://www.linux.org/',
77-
icon: 'logos:linux-tux',
89+
icon: 'uil:linux',
7890
recommended: true
7991
},
8092
{

0 commit comments

Comments
 (0)