refactor: remove Frontmatter type

This commit is contained in:
satnaing
2023-01-26 22:40:10 +06:30
parent 4e7d9843d7
commit 7243d29607
-12
View File
@@ -1,15 +1,3 @@
export interface Frontmatter {
title: string;
ogImage?: string;
description: string;
author: string;
datetime: string;
slug: string;
featured: boolean;
draft: boolean;
tags: string[];
}
export type SocialObjects = {
name: SocialMedia;
href: string;