update content render page

Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
This commit is contained in:
nurRiyad
2023-01-11 01:33:59 +06:00
parent 935865806a
commit 3f647fc554
9 changed files with 75 additions and 57 deletions

11
types/blog.ts Normal file
View File

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