docs: 📝 Write article about Versia 0.5

This commit is contained in:
Jesse Wierzbinski 2025-01-17 17:27:22 +01:00
parent d97efab9f3
commit 7589afd7b7
No known key found for this signature in database
16 changed files with 291 additions and 50 deletions

View file

@ -2,6 +2,7 @@ export interface FrontMatter {
title: string;
description: string;
image: string;
image_credit?: string;
image_width?: number;
image_height?: number;
created_at: string;
@ -16,6 +17,7 @@ export interface Post {
description: string;
image: {
url: string;
credit?: string;
width?: number;
height?: number;
};