remove author field

This commit is contained in:
2024-08-24 02:09:34 -05:00
parent 358d6b91c6
commit 7efa375427
6 changed files with 7 additions and 12 deletions

View File

@@ -26,17 +26,12 @@ type Skills = {
skill_3_description: string;
}
type Author = {
name: string
}
export type Post = {
slug: string;
title: string;
content: string;
image: string;
published_date: string;
author: Author;
tags: string[];
image_alt: string;
}