We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d532c1 commit ff66405Copy full SHA for ff66405
src/components/Portfolio.astro
@@ -18,7 +18,7 @@ const projects = i18n.PORTFOLIO_SECTION.PROJECTS;
18
<div class="project">
19
<a href={project.urlProduction} target="_blank" aria-label="project-preview">
20
<picture>
21
- <img src={project.image} alt="project-preview" loading="lazy">
+ <img src={`/${project.image}`} alt="project-preview" loading="lazy">
22
</picture>
23
</a>
24
<div class="description">
@@ -28,7 +28,7 @@ const projects = i18n.PORTFOLIO_SECTION.PROJECTS;
28
{
29
project.technologies.map((technology) => (
30
<img
31
- src={`images/${technology.image}`}
+ src={`/images/${technology.image}`}
32
alt={`${technology.name} tool used in the project`}
33
loading="lazy">
34
))
0 commit comments