Astro LightGallery
Using lightgallery in astro
Code Snippet
---import { LightGallery } from 'astro-lightgallery'---<LightGallery class="..." options={{ thumbnail: true, ... }} > { <a class="mygallery-one-img" href="img1.jpg"> <img src="img1.jpg" /> </a> <a class="mygallery-one-img" href="img2.jpg"> <img src="img2.jpg" /> </a> ... }</LightGallery>
Go to the doc