wf4/shared/types/Blog.ts
webfussel 6c68f3afb1 add: og image for robert
OG Image for thumbnail for robert in Blog
2025-07-11 13:32:59 +02:00

20 lines
No EOL
267 B
TypeScript

export type Post = {
url: string
title: string
excerpt: string
date: string
'og-image': string
}
type Author = {
name: string
img: string
img1x: string
img2x: string
img3x: string
}
export type ExternalPost = {
author: Author
posts: Post[]
}