init with dummy posts

This commit is contained in:
2025-03-18 15:07:45 -05:00
commit 5ec7b398d1
42 changed files with 9902 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
export interface PostData {
id: string;
title: string;
date: string;
excerpt: string;
content: string;
author: string;
tags: string[];
coverImage?: string;
}
export interface PostMetadata {
id: string;
title: string;
date: string;
excerpt: string;
author: string;
tags: string[];
coverImage?: string;
}