Getting Started

Quick start guide and basic concepts for your portfolio website

Getting Started

This section will help you get started quickly with your portfolio website. Learn the basic concepts and structure.

Understanding the Structure

Your portfolio website uses a hierarchical structure for documentation:

  • Sections (top level) - Major categories like "Guide", "Knowledge Base"
  • Subsections (second level) - Categories within sections like "Getting Started", "Features"
  • Documents (individual pages) - The actual content files

File Structure

All content is stored in the content/ directory:

Basic Concepts

Frontmatter

Every content file needs frontmatter at the top:

URL Structure

The URL matches your folder structure:

  • content/docs/guide/overview.mdx/docs/guide/overview
  • content/docs/guide/getting-started/overview.mdx/docs/guide/getting-started/overview
  • content/blog/my-post.mdx/blog/my-post

Overview Pages

Major sections can have overview pages that describe what the section contains. When an overview page exists, the section title becomes clickable in the sidebar.

Next Steps