Add first post for monday, add external posts from other authors, add components for internal and external links
19 lines
No EOL
246 B
TypeScript
19 lines
No EOL
246 B
TypeScript
export type Post = {
|
|
url: string
|
|
title: string
|
|
excerpt: string
|
|
date: string
|
|
}
|
|
|
|
type Author = {
|
|
name: string
|
|
img: string
|
|
img1x: string
|
|
img2x: string
|
|
img3x: string
|
|
}
|
|
|
|
export type ExternalPost = {
|
|
author: Author
|
|
posts: Post[]
|
|
} |