So you've cloned Vending Mocha. What's next? Here is a quick guide to making it your own.
Open src/site.config.ts and update the following:
export const siteConfig = {
title: "My Awesome Blog",
// ...
}
Add new .md files with frontmatter to
/projects/ to add your projects.
---
title: "My Project"
description: "What is it?"
link: "https://github.com/..."
status: "active" // active, dead, inactive
weight: 5 // higher weight projects are displayed first
---
Just add new .md files to /posts/. The
filename becomes the slug (e.g.,
/posts/my-post.md -> /post/my-post).
That's it! You're ready to deploy. 🚀