feat: working SPA

This commit is contained in:
2026-04-24 18:25:27 +02:00
parent e89020ad96
commit cbab7c74e5
13 changed files with 166 additions and 14 deletions
+11
View File
@@ -0,0 +1,11 @@
export interface MarkdownAttributes {
title?: string
draft?: string
thumbnail?: string
path?: string
}
export interface MarkdownData {
attributes: MarkdownAttributes
html: string
}