Documentation
Content Collections
Create and manage blog and docs content with Markdown.
Add a blog post
Create a new file in src/content/blog/ with frontmatter:
---
slug: my-first-post
title: "My First Post"
description: "Short summary for cards and SEO."
publishedDate: 2025-01-20
author: "Artimg Team"
category: "Updates"
image: "/assets/images/gallery-image-1.webp"
tags:
- AI
- Updates
draft: false
---
Add a doc page
Create a new file in src/content/docs/:
---
title: "New Doc Page"
description: "Short summary shown on the docs list."
order: 7
section: "Customization"
draft: false
---
Drafts
Set draft: true to hide a page from the site until it is ready.