feat: add changelog entry in preparation for update

This commit is contained in:
Paul Makles
2023-06-11 17:31:22 +01:00
parent 75d07ffe0f
commit f20ada7c49
11 changed files with 232 additions and 12 deletions

View File

@@ -33,6 +33,8 @@ function RenderLog({ post }: { post: ChangelogPost }) {
{post.content.map((entry) =>
typeof entry === "string" ? (
<Markdown content={entry} />
) : entry.type === "element" ? (
entry.element
) : (
<Image src={entry.src} shadow={entry.shadow} />
),