Fix images on pages

This commit is contained in:
Henry Hiles 2023-04-24 10:19:27 -04:00
parent 4474ceba7f
commit 831efa2f2d
4 changed files with 6 additions and 6 deletions

View file

@ -12,7 +12,7 @@ import Divider from "./Divider.astro"
projects.map((project, index) => (
<a href={`/projects/${index}`}>
<img
src={`/images/${project.thumbImage}`}
src={`images/${project.thumbImage}`}
alt={project.name}
/>
<h3 class={styles.projectName}>{project.name}</h3>