aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXe Iaso <me@xeiaso.net>2023-10-13 10:47:44 -0400
committerXe Iaso <me@xeiaso.net>2023-10-13 10:47:44 -0400
commit1961cfef833c701d9149f87d04dd683b70a90624 (patch)
tree0050680851e4f3b0591aa5950b1f2666cfaa4dc0
parent63324d6c938129bcf5263901ca9e1045d7ed4178 (diff)
downloadxesite-1961cfef833c701d9149f87d04dd683b70a90624.tar.xz
xesite-1961cfef833c701d9149f87d04dd683b70a90624.zip
components/XeblogSlide: oh my god I forgot to use the talks folder
Signed-off-by: Xe Iaso <me@xeiaso.net>
-rw-r--r--lume/src/_components/XeblogSlide.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lume/src/_components/XeblogSlide.tsx b/lume/src/_components/XeblogSlide.tsx
index fe5c34e..09c75bc 100644
--- a/lume/src/_components/XeblogSlide.tsx
+++ b/lume/src/_components/XeblogSlide.tsx
@@ -10,16 +10,16 @@ export default function XeblogSlide({ name, essential, desc }: XeblogSlideProps)
<picture>
<source
type="image/avif"
- srcset={`https://cdn.xeiaso.net/file/christine-static/${name}.avif`}
+ srcset={`https://cdn.xeiaso.net/file/christine-static/talks/${name}.avif`}
/>
<source
type="image/webp"
- srcset={`https://cdn.xeiaso.net/file/christine-static/${name}.webp`}
+ srcset={`https://cdn.xeiaso.net/file/christine-static/talks/${name}.webp`}
/>
<img
alt={desc || `Slide ${name}`}
loading="lazy"
- src={`https://cdn.xeiaso.net/file/christine-static/${name}.jpg`}
+ src={`https://cdn.xeiaso.net/file/christine-static/talks/${name}.jpg`}
/>
</picture>
{desc && <figcaption>{desc}</figcaption>}