how to add photos

1. Put your image files into the images/ folder
2. In this file, replace a placeholder <div class="gallery-item placeholder"> with:

<div class="gallery-item" onclick="openLightbox('../images/your-photo.jpg')">
  <img src="../images/your-photo.jpg" alt="caption" loading="lazy" />
  <div class="img-overlay"><span class="img-caption">Your caption</span></div>
</div>

3. git add . && git commit -m "add photos" && git push — Cloudflare deploys automatically.