Skip to content

Commit 2378800

Browse files
committed
feat: update image path
1 parent 903e81c commit 2378800

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pages/past-projects.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { pastProjects } from '../data/pastProjects.ts'
1313
<ProjectCard
1414
title={project.title}
1515
description = {project.description}
16-
icon={`static/past-project-icons/${project.icon}`}
16+
icon={`/static/past-project-icons/${project.icon}`}
1717
awards={project.awards}
1818
link={project.link}
1919
year={project.year}

src/pages/sponsors.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { pastSponsors } from '../data/pastSponsors'
1717
{
1818
currentSponsors.map(sponsor => (
1919
<p class="tier">{sponsor.tier}</p>
20-
<SponsorCategory icons={sponsor.icons} path="static/sponsor-icons/" />
20+
<SponsorCategory icons={sponsor.icons} path="/static/sponsor-icons/" />
2121
))
2222
}
2323
</div>

0 commit comments

Comments
 (0)