From db264ac2f9f23ef29dfb9d88aed7245443928474 Mon Sep 17 00:00:00 2001 From: Francisco Javier Arceo Date: Wed, 1 Jul 2026 14:24:03 -0700 Subject: [PATCH] feat: Add click-to-zoom lightbox for blog post images Clicking any image in a blog post now opens a fullscreen overlay with the image centered on a dark backdrop. Close with click or Escape. Co-Authored-By: Claude Opus 4.6 Signed-off-by: Francisco Javier Arceo --- infra/website/src/pages/blog/[slug].astro | 66 ++++++++++++++++++++++- 1 file changed, 65 insertions(+), 1 deletion(-) diff --git a/infra/website/src/pages/blog/[slug].astro b/infra/website/src/pages/blog/[slug].astro index 90e8572d0b2..a8ab3da8559 100644 --- a/infra/website/src/pages/blog/[slug].astro +++ b/infra/website/src/pages/blog/[slug].astro @@ -223,6 +223,7 @@ const socialImage = heroImage ? toAbsoluteUrl(heroImage) : undefined; height: auto; border-radius: 4px; margin: 32px 0; + cursor: zoom-in; } /* Hero Image */ @@ -339,4 +340,67 @@ const socialImage = heroImage ? toAbsoluteUrl(heroImage) : undefined; font-size: 18px; } } - + + + + + +