Fixed gallery link

This commit is contained in:
Anton Pogrebnjak
2026-04-06 23:00:56 +02:00
parent c0a7f193db
commit fcb52ebdc9

View File

@@ -9,7 +9,7 @@ const color = Astro.props.color || 'var(--text)';
<section> <section>
{ {
photos.map((photo) => ( photos.map((photo) => (
<a href={"photography/" + photo.id}> <a href={"/photography/" + photo.id}>
<img src={photo.src} /> <img src={photo.src} />
</a> </a>
)) ))