How to Add Content
A step-by-step guide to adding articles, concepts, and tools to your website.
Your Name1 min read
How to Add Content
This guide walks you through adding different types of content to your website.
Articles
Create a new .md file in src/content/articles/{locale}/{category}/. Each article needs frontmatter:
---
title: 'Your Article Title'
description: 'A brief description for SEO and previews.'
category: 'getting-started'
tags: ['tag1', 'tag2']
pubDate: 2026-01-20
author: 'Your Name'
---
Concepts
Concepts are short definitions. Create them in src/content/concepts/{locale}/:
---
term: 'Your Term'
definition: 'A one-line definition.'
category: 'getting-started'
relatedTerms: []
relatedArticles: []
pubDate: 2026-01-20
---
Tools
Tools are defined in src/content/tools/index.json. Each tool can be a calculator, comparison table, or quiz.
Tips
- Use descriptive file names (they become URL slugs)
- Keep descriptions under 160 characters for SEO
- Add relevant tags for search discoverability