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

@@ -14,7 +14,12 @@ export default function CopyButton({
return (
<Button onClick={handleCopy} type="button" variant="icon">
<Image alt="Copy Icon" height={20} src="/copy.svg" width={20} />
<Image
alt="Copy Icon"
height={20}
src="/_static/icons/copy.svg"
width={20}
/>
</Button>
)
}

View File

@@ -16,7 +16,7 @@ export default function MembershipCardButton() {
type="button"
>
<span>Membership Card</span>
<Image alt="QR icon" height={20} src="/qr.svg" width={20} />
<Image alt="QR icon" height={20} src="/_static/icons/qr.svg" width={20} />
</Button>
)
}