Skip to content

Commit 4d532c1

Browse files
committed
✏️ Fix image paths
1 parent 113f15d commit 4d532c1

File tree

3 files changed

+33
-33
lines changed

3 files changed

+33
-33
lines changed

src/components/About.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const i18n = getI18n({ currentLocale });
1515
<p set:html={i18n.ABOUT_SECTION.DESCRIPTION_3}></p>
1616
</div>
1717
<div class="image">
18-
<img src="programming.webp" alt={i18n.ABOUT_SECTION.IMAGE.ALT}>
18+
<img src="/programming.webp" alt={i18n.ABOUT_SECTION.IMAGE.ALT}>
1919
</div>
2020
</div>
2121
</section>

src/data/projects.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
"name": "Cloud Box",
44
"description": "This is a simple cloud storage service that allows users to upload and download files. Here you can also create folders and subfolders to organize your files",
5-
"image": "images/portfolio/cloud-box.webp",
5+
"image": "/images/portfolio/cloud-box.webp",
66
"technologies": [
77
{ "name": "Angular", "image": "angular.webp" },
88
{ "name": "NodeJs", "image": "nodejs.webp" },
@@ -15,7 +15,7 @@
1515
{
1616
"name": "Info Reader",
1717
"description": "This is a web application that allows you to read technology news, using RSS feeds from different sources and saving them in a database. It also allows you to create a user account and save your favorite news.",
18-
"image": "images/portfolio/inforeader.webp",
18+
"image": "/images/portfolio/inforeader.webp",
1919
"technologies": [
2020
{ "name": "Angular", "image": "angular.webp" },
2121
{ "name": "NodeJs", "image": "nodejs.webp" },
@@ -28,7 +28,7 @@
2828
{
2929
"name": "Smart Dental",
3030
"description": "This application allows you to manage a dental clinic, it allows you to guide a history of the patient, manage the appointments, inventory, employees and patients.",
31-
"image": "images/portfolio/smart-dental.webp",
31+
"image": "/images/portfolio/smart-dental.webp",
3232
"technologies": [
3333
{ "name": "Angular", "image": "angular.webp" },
3434
{ "name": "NestJs", "image": "nestjs.webp" },
@@ -41,7 +41,7 @@
4141
{
4242
"name": "Bon Appetito App",
4343
"description": "Here you can buy or build your own pizza, choose the ingredients and the size of the pizza, and then you can order it.",
44-
"image": "images/portfolio/bon-appetito.webp",
44+
"image": "/images/portfolio/bon-appetito.webp",
4545
"technologies": [
4646
{ "name": "Angular", "image": "angular.webp" },
4747
{ "name": "TypeScript", "image": "ts.webp" },
@@ -54,7 +54,7 @@
5454
{
5555
"name": "Guess Word Game",
5656
"description": "This a game where you have to guess the answer to a question. Depending on the difficulty level, you will have a certain number of attempts to guess the answer. The game ends when you run out of attempts or you guess the answer correctly",
57-
"image": "images/portfolio/guess-word.webp",
57+
"image": "/images/portfolio/guess-word.webp",
5858
"technologies": [
5959
{ "name": "Angular", "image": "angular.webp" },
6060
{ "name": "NodeJs", "image": "nodejs.webp" },
@@ -67,7 +67,7 @@
6767
{
6868
"name": "Twitter Clone",
6969
"description": "This is a clone of the Twitter application, it allows you to create a user account, post tweets, follow other users, like tweets, etc.",
70-
"image": "images/portfolio/twitter-clone.webp",
70+
"image": "/images/portfolio/twitter-clone.webp",
7171
"technologies": [
7272
{ "name": "Angular", "image": "angular.webp" },
7373
{ "name": "NodeJs", "image": "nodejs.webp" },
@@ -80,7 +80,7 @@
8080
{
8181
"name": "Memory Game",
8282
"description": "This is a memory game, you have to find the pairs of cards, you have 3 levels of difficulty, easy, medium and hard.",
83-
"image": "images/portfolio/memory-game.webp",
83+
"image": "/images/portfolio/memory-game.webp",
8484
"technologies": [
8585
{ "name": "HTML", "image": "html.webp" },
8686
{ "name": "CSS", "image": "css.webp" },
@@ -92,7 +92,7 @@
9292
{
9393
"name": "Unit Converter",
9494
"description": "This is a unit converter, you can convert from one unit to another, it has different categories, such as length, weight, volume, etc.",
95-
"image": "images/portfolio/unit-converter.webp",
95+
"image": "/images/portfolio/unit-converter.webp",
9696
"technologies": [
9797
{ "name": "Angular", "image": "angular.webp" },
9898
{ "name": "TypeScript", "image": "ts.webp" },

src/data/skills.json

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,128 +2,128 @@
22
"cardsDataFrontend": [
33
{
44
"name": "HTML",
5-
"imagePath": "images/html.webp",
5+
"imagePath": "/images/html.webp",
66
"alt": "html"
77
},
88
{
99
"name": "CSS 3",
10-
"imagePath": "images/css.webp",
10+
"imagePath": "/images/css.webp",
1111
"alt": "css"
1212
},
1313
{
1414
"name": "JavaScript",
15-
"imagePath": "images/js.webp",
15+
"imagePath": "/images/js.webp",
1616
"alt": "js"
1717
},
1818
{
1919
"name": "TypeScript",
20-
"imagePath": "images/ts.webp",
20+
"imagePath": "/images/ts.webp",
2121
"alt": "ts"
2222
},
2323
{
2424
"name": "Angular",
25-
"imagePath": "images/angular.webp",
25+
"imagePath": "/images/angular.webp",
2626
"alt": "angular"
2727
},
2828
{
2929
"name": "Astro",
30-
"imagePath": "images/astro.webp",
30+
"imagePath": "/images/astro.webp",
3131
"alt": "astro"
3232
},
3333
{
3434
"name": "Svelte",
35-
"imagePath": "images/svelte.webp",
35+
"imagePath": "/images/svelte.webp",
3636
"alt": "svelte"
3737
},
3838
{
3939
"name": "SASS",
40-
"imagePath": "images/sass.webp",
40+
"imagePath": "/images/sass.webp",
4141
"alt": "scss"
4242
},
4343
{
4444
"name": "Bootstrap",
45-
"imagePath": "images/bootstrap.webp",
45+
"imagePath": "/images/bootstrap.webp",
4646
"alt": "bootstrap"
4747
}
4848
],
4949
"cardsDataBackend": [
5050
{
5151
"name": "Nodejs",
52-
"imagePath": "images/nodejs.webp",
52+
"imagePath": "/images/nodejs.webp",
5353
"alt": "nodejs"
5454
},
5555
{
5656
"name": "Nestjs",
57-
"imagePath": "images/nestjs.webp",
57+
"imagePath": "/images/nestjs.webp",
5858
"alt": "nestjs"
5959
},
6060
{
6161
"name": "MongoDB",
62-
"imagePath": "images/mongo.webp",
62+
"imagePath": "/images/mongo.webp",
6363
"alt": "mongodb"
6464
},
6565
{
6666
"name": "PostgreSql",
67-
"imagePath": "images/postgresql.webp",
67+
"imagePath": "/images/postgresql.webp",
6868
"alt": "postgresql"
6969
},
7070
{
7171
"name": "Sql Server",
72-
"imagePath": "images/sqlserver.webp",
72+
"imagePath": "/images/sqlserver.webp",
7373
"alt": "sqlserver"
7474
},
7575
{
7676
"name": "MySql",
77-
"imagePath": "images/mysql.webp",
77+
"imagePath": "/images/mysql.webp",
7878
"alt": "mysql"
7979
},
8080
{
8181
"name": "Docker",
82-
"imagePath": "images/docker.webp",
82+
"imagePath": "/images/docker.webp",
8383
"alt": "docker"
8484
}
8585
],
8686
"cardsDataOthers": [
8787
{
8888
"name": "Git",
89-
"imagePath": "images/git.webp",
89+
"imagePath": "/images/git.webp",
9090
"alt": "git"
9191
},
9292
{
9393
"name": "Azure",
94-
"imagePath": "images/azure.webp",
94+
"imagePath": "/images/azure.webp",
9595
"alt": "azure"
9696
},
9797
{
9898
"name": "Figma",
99-
"imagePath": "images/figma.webp",
99+
"imagePath": "/images/figma.webp",
100100
"alt": "figma"
101101
},
102102
{
103103
"name": "Postman",
104-
"imagePath": "images/postman.webp",
104+
"imagePath": "/images/postman.webp",
105105
"alt": "postman"
106106
},
107107
{
108108
"name": "Jest",
109-
"imagePath": "images/jest.webp",
109+
"imagePath": "/images/jest.webp",
110110
"alt": "jest"
111111
},
112112
{
113113
"name": "Jasmine",
114-
"imagePath": "images/jasmine.webp",
114+
"imagePath": "/images/jasmine.webp",
115115
"alt": "jasmine"
116116
}
117117
],
118118
"cardsDataLearning": [
119119
{
120120
"name": "Vue",
121-
"imagePath": "images/vue.webp",
121+
"imagePath": "/images/vue.webp",
122122
"alt": "vue"
123123
},
124124
{
125125
"name": "Tailwind",
126-
"imagePath": "images/tailwind.webp",
126+
"imagePath": "/images/tailwind.webp",
127127
"alt": "tailwind"
128128
}
129129
]

0 commit comments

Comments
 (0)