switched to approuter

This commit is contained in:
2025-08-18 13:10:47 -05:00
parent c2b0d905e1
commit 6cd941295c
82 changed files with 5154 additions and 9772 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;
}