Add some content to the blog.

This commit is contained in:
Dave Smith-Hayes 2025-06-25 21:31:16 -04:00
parent d8e52ff150
commit 02c42ef1ed

View File

@ -5,3 +5,8 @@ export type Post = {
content: string;
html?: string;
};
export type Image = {
url: string;
alt?: string;
}