fix: change icon paths to _static

This commit is contained in:
Michael Zetterberg
2024-04-17 17:29:18 +02:00
parent 0039428c76
commit d2372b4377
30 changed files with 42 additions and 22 deletions

View File

@@ -31,7 +31,7 @@ export default function Stay({
<Image
alt="Placeholder image flower"
height={73}
src="/flower-image.svg"
src="/_static/icons/flower-image.svg"
width={73}
/>
</div>
@@ -44,7 +44,7 @@ export default function Stay({
<Image
alt="Calendar Icon"
height={20}
src="/calendar_month.svg"
src="/_static/icons/calendar_month.svg"
width={20}
/>
<p>
@@ -54,7 +54,12 @@ export default function Stay({
</p>
</div>
<div className={styles.guests}>
<Image alt="Guests Icon" height={20} src="/person.svg" width={20} />
<Image
alt="Guests Icon"
height={20}
src="/_static/icons/person.svg"
width={20}
/>
<span>
{guests} guest{guests > 1 ? "s" : ""}
</span>