## What problem does it solve?
This guide removes uncertainty from writing, editing, and publishing posts to the DYLabs tech blog by documenting the required frontmatter, file locations, local preview flow, and deployment expectations so authors can produce production-ready posts without breaking the build or CI.
## Core Features & Use Cases
- Post creation: Create Markdown posts in src/content/posts with the required frontmatter fields and optional thumbnails.
- Author management: Add and maintain author entries in src/data/authors.json so posts correctly attribute authors and load avatars.
- Local preview and deploy: Preview changes with pnpm dev and rely on GitHub Actions to build and deploy after PR → main merges.
- Use case: Add a Kubernetes troubleshooting article by adding src/content/posts/k8s-troubleshooting.md with frontmatter, include images in public/images/posts, open a PR for review, and merge to deploy.
### Quick Start
Create a new Markdown file at src/content/posts/your-slug.md with title, description, author, date, tags, save images to public/images/posts, set draft:false, run pnpm dev to preview locally, then open a PR and merge to main to trigger GitHub Actions deployment.