Content

How do I add new FAQ entries?

Create markdown files in the content/faq directory

1 min läsning

Creating FAQ Entries

Create a new .md file in src/content/faq/:

---
title: "Your question here"
description: "Brief description of the answer"
category: "category-name"
tags: ["tag1", "tag2"]
pubDate: 2024-01-20
featured: false
order: 0
---

Your answer content here in **Markdown** format.

Frontmatter Fields

FieldTypeRequiredDescription
titlestringYesThe question (max 100 chars)
descriptionstringYesShort summary (max 200 chars)
categorystringYesCategory slug
tagsarrayNoList of tags
pubDatedateYesPublication date
draftbooleanNoHide from production
featuredbooleanNoPin to top
ordernumberNoSort order

Ämnen

#markdown #content