Welcome to the docs — edit content/docs to get started.
My App
Partners

Components

Components

Edit on GitHub

This page shows common Markdown patterns you can use across the docs.

Code Blocks

type User = {
  id: string;
  name: string;
};

export function greeting(user: User): string {
  return `Hello, ${user.name}`;
}

Lists

Use lists to break down steps or requirements:

  • Install dependencies
  • Run the development server
  • Open the docs and verify changes

Tables

Tables are useful for prop summaries or feature comparisons:

FeatureDescriptionDefault
SidebarNavigation columnEnabled
TabsSection switchingAuto
SearchQuick findEnabled

Tips

  • Keep examples short and focused.
  • Prefer runnable snippets where possible.
  • Add context before code when the intent is not obvious.

Cards

On this page