This commit is contained in:
2026-01-17 00:32:38 +01:00
parent 3dd4f7f121
commit 4c7f0e36bf
69 changed files with 8234 additions and 7556 deletions

View File

@@ -5,8 +5,9 @@ import matter from 'gray-matter';
export interface PostFrontmatter {
title: string;
date: string;
excerpt: string;
featuredImage: string | null;
excerpt?: string;
featuredImage?: string | null;
category?: string;
locale: string;
}