feat: expand content types in Card, EditPost, Pagination, and PostDetails components

This commit is contained in:
vorpax
2026-01-29 11:46:07 +01:00
parent 96d5300d95
commit d953687389
5 changed files with 20 additions and 10 deletions

View File

@@ -6,7 +6,7 @@ import IconArrowRight from "@/assets/icons/IconArrowRight.svg";
import LinkButton from "./LinkButton.astro";
type Props = {
page: Page<CollectionEntry<"blog">>;
page: Page<CollectionEntry<"blog" | "events" | "workshops" | "news" | "technical">>;
};
const { page } = Astro.props;