Clean Blog system

- Improved the blog posts
- Add a test to visit the blog index
- Add Tailwind Typography for the markdown blog posts
This commit is contained in:
Michael
2022-01-19 12:47:38 +01:00
parent 6e319c0527
commit a85e672f9f
14 changed files with 83 additions and 45 deletions

View File

@@ -6,7 +6,7 @@ import Layout from 'components/Layout';
import MoreStories from 'components/blog/more-stories';
import Post from '../types/post';
import SectionSeparator from 'components/blog/section-separator';
import { getAllPosts } from '../lib/api';
import { getAllPosts } from '../lib/blogApi';
type Properties = {
allPosts: Post[];