Getting Started
12/18/2025
Running Locally
-
Install dependencies
npm install -
Start the development server
npm run dev -
Open in browser
http://localhost:3000
Other Commands
npm run build- Create production buildnpm run start- Run production servernpm run lint- Run linter
Adding New Posts
-
Create a new markdown file in the
posts/directory:posts/my-post.md -
Add front matter at the top of the file:
--- title: "Your Post Title" date: "2025-12-17" description: "A brief description of your post." --- -
Write your content below the front matter using markdown:
## My Heading Your content here. You can use **bold**, _italic_, `code`, lists, and more. -
View your post at:
http://localhost:3000/posts/my-postThe URL uses the filename (without
.md).
Front Matter Fields
| Field | Required | Description |
| ------------- | -------- | --------------------------- |
| title | Yes | Displayed as the post title |
| date | Yes | Format: YYYY-MM-DD |
| description | Yes | Used for meta tags |