From 02c42ef1ed8448143470d4817b7530804457b8b8 Mon Sep 17 00:00:00 2001 From: Dave Smith-Hayes Date: Wed, 25 Jun 2025 21:31:16 -0400 Subject: [PATCH] Add some content to the blog. --- src/models/Post.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/models/Post.ts b/src/models/Post.ts index c5e7b73..80ec043 100644 --- a/src/models/Post.ts +++ b/src/models/Post.ts @@ -5,3 +5,8 @@ export type Post = { content: string; html?: string; }; + +export type Image = { + url: string; + alt?: string; +}