Getting Started
Learn how to use Secur0 documentation
Last updated: February 5, 2026
Welcome to Secur0 Docs
This is your getting started guide for using Secur0 documentation. Here you’ll find everything you need to know to begin.
How to add new documentation?
To add new documentation, simply create Markdown (.md) files in the src/content/docs/ folder.
Each file must have a frontmatter with the following structure:
---
title: 'Document title'
description: 'Brief content description'
pubDate: 2026-02-05
updatedDate: 2026-02-05
---
Features
- Full Markdown: Use all Markdown features to format your content
- Code highlighting: You can add code blocks with specific syntax
- Easy navigation: The system automatically organizes your documentation
- No backend needed: Everything is static and generated at build time
Code example
Here’s an example of how a code block looks:
function greet(name: string): string {
return `Hello, ${name}!`;
}
console.log(greet('Secur0'));
Lists
You can create ordered lists:
- First item
- Second item
- Third item
Or unordered lists:
- Item A
- Item B
- Item C
Links and more
You can add links, bold text, italic text and much more.
Note: This is an example quote. You can use this format to highlight important information.
Next steps
- Create your own documentation in
src/content/docs/ - Organize your documents by categories
- Update the search when ready (coming soon)
Start documenting!