This commit is contained in:
2025-12-20 18:46:45 +08:00
parent 5163e756f0
commit 547fd99c23
73 changed files with 15635 additions and 1924 deletions

View File

@@ -1,10 +1,10 @@
export interface BlogPost {
title: string
date: string
description: string
image: string
alt: string
ogImage: string
tags: string[]
published: boolean
title: string;
date: string;
description: string;
image: string;
alt: string;
ogImage: string;
tags: string[];
published: boolean;
}