Hello from The Job Copilot
2026-01-26
Welcome to the blog.
How it works
- Each post is a Markdown file in
content/blog/*.md. - The filename becomes the post slug.
- Add frontmatter like
title,date, anddescription.
Markdown features
You can use bold, italics, links, and GitHub-flavored Markdown:
- checklists
- tables
- code blocks
export function hello(name: string) {
return `Hello, ${name}`;
}