removed photos page... scary

This commit is contained in:
2025-11-22 16:54:17 +13:00
parent b4f8a42e05
commit c3e05b44ea
4 changed files with 11 additions and 20 deletions

View File

@@ -6,13 +6,13 @@ const pb = await authPB()
<div class="swiper-slide flex flex-col md:flex-row items-center justify-center">
<a class="b1-no-underline" href={`/albums/${encodeURI(a.title)}`}>
<h1 class="flex-2 text-center pb-0 md:flex-1">{a.title}</h1>
<p class="flex-2 text-center md:flex-1">{a.date}</p>
<h1 class="text-center pb-0 md:flex-1">{a.title}</h1>
<p class="text-center">{a.date}</p>
<img
src={pb.files.getURL(a, a.images[0])}
class="flex-1 md:flex-2 w-full h-full object-contain"
loading="lazy"
alt={a.title}
src={pb.files.getURL(a, a.images[0])}
class="w-full h-full object-contain"
loading="lazy"
alt={a.title}
/>
</a>
</div>