Getting Started with This Blog
WritingGetting Started
This blog is built with Next.js, TypeScript, and Tailwind CSS. Posts are stored as Markdown files in the posts/ directory.
Adding a New Post
To add a new post:
- Create a new
.mdfile in theposts/directory - Add frontmatter at the top with metadata:
--- title: "Your Post Title" date: "2024-01-20" description: "A brief description" type: "Writing" --- - Write your content below the frontmatter using Markdown
Frontmatter Fields
title(required): The title of your postdate(required): Publication date in YYYY-MM-DD formatdescription(optional): A brief description shown on the home pagetype(optional): Category or type of post
That's it! The blog will automatically pick up new posts when you rebuild.