📄 Huge intl feature

This commit is contained in:
RJ
2025-12-03 00:17:34 +02:00
parent 6e5d641c06
commit 78cdc7b539
48 changed files with 955 additions and 138 deletions

View File

@@ -5,12 +5,14 @@ export interface FrontMatter {
author: string
category: string
tags: string[]
locale: string
image?: string
draft?: boolean
}
export interface Post {
slug: string
locale: string
frontmatter: FrontMatter
content: string
readingTime: number