From 916c512bf5a31041ac87296e1382f84c9367b955 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 14 Feb 2022 17:16:53 +0100 Subject: chore: display initial posts, thematics & topics By fetching the data in getStaticProps, I can display the data even for users with Javascript disabled. --- src/ts/types/blog.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/ts/types/blog.ts') diff --git a/src/ts/types/blog.ts b/src/ts/types/blog.ts index 7325ddf..8b48264 100644 --- a/src/ts/types/blog.ts +++ b/src/ts/types/blog.ts @@ -1,5 +1,6 @@ import { PageInfo, Slug } from './app'; import { ArticlePreview, RawArticlePreview } from './articles'; +import { ThematicPreview, TopicPreview } from './taxonomies'; export type PostsList = { posts: ArticlePreview[]; @@ -25,5 +26,8 @@ export type AllPostsSlug = { }; export type BlogPageProps = { - fallback: PostsList; + allThematics: ThematicPreview[]; + allTopics: TopicPreview[]; + firstPosts: PostsList; + totalPosts: number; }; -- cgit v1.2.3