This commit is contained in:
2026-04-17 12:02:41 +02:00
parent 1899335e60
commit 3c8dbade41
12 changed files with 595 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
export type ArticleFrontmatter = {
ready: boolean;
title: string;
description: string;
date: string;
category: string;
tags: string[];
cover?: string;
readTime?: string;
summary?: string[];
};
export type Article = ArticleFrontmatter & {
slug: string;
content: string;
};