Better slugs, improvements to projects, some fixes
All checks were successful
Build and Deploy to Web Server / deploy (push) Successful in 14m57s

This commit is contained in:
2025-08-14 11:11:10 +09:30
parent 1f45a74b2a
commit 778490bed8
25 changed files with 134 additions and 69 deletions

View File

@@ -0,0 +1,10 @@
---
import Image from "astro/components/Image.astro";
const { src, alt } = Astro.props;
import { getImageByPath } from "@lib/utils";
const imageSRC = getImageByPath(src)!;
---
<Image src={imageSRC} alt={alt} />