We can add your website's blog posts within the src/content/posts
folder.
Add a new blog post
To add a new blog post, create a new markdown file within the src/content/posts
folder. The file name should be the slug of the blog post. For example, if you want to create a blog post with the slug hello-world
, create a file called hello-world.mdx
.
For example, the following file is a blog post with the slug lorem-ipsum
:
---
title: Lorem Ipsum
date: 2023-09-23
live: true
description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
image: "/assets/images/posts/lorem-ipsum.webp"
---
Blog post metadata
Each blog post should have the following metadata:
title
: The title of the blog postdate
: The date of the blog postlive
: Whether the blog post should be visible on the websitedescription
: The description of the blog postimage
: The image of the blog post
Blog post content
The content of the blog post should be written in markdown. You can use the MDX syntax to add React components within the markdown content.
Additionally, we included multiple components that you can use to add content to your blog post:
Image
: Add an image to your blog post (a wrapper around thenext/image
component)Video
: Add a video to your blog post. This is lazy-loaded and includes a loading spinner while the video is loadingAlert
: Add an alert to your blog postLazyRender
: Lazy-load a React component within your blog postTweetEmbed
: Embed a tweet within your blog post