> ## Documentation Index
> Fetch the complete documentation index at: https://starter-quill.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Quill — The Minimalist Theme

> Start building awesome documentation in under five minutes with the Quill theme.

export const HeroCard = ({img, title, description, href}) => {
  return <a className="border-b pb-8 cursor-pointer border-gray-500 dark:border-gray-800 hover:!border-primary dark:hover:!border-primary-light" href={href}>
      <img src={img} />
      <h1 className="mt-4 font-semibold text-gray-900 dark:text-white">{title}</h1>
      <h2 className="mt-1 text-gray-600 dark:text-gray-400 text-sm leading-6">{description}</h2>
    </a>;
};

<CardGroup>
  <HeroCard img="https://raw.githubusercontent.com/mintlify/themes/main/quill/images/setting-up.svg" title="Setting up your docs" description="Everything you need to know about the doc setup process, from start to finish" href="/quickstart" />

  <HeroCard img="https://raw.githubusercontent.com/mintlify/themes/main/quill/images/themes.svg" title="Explore themes" description="Explore a variety of themes you can use to spice up the look and feel of your documentation" href="/quickstart" />
</CardGroup>

## Make it yours

Update your docs to your brand and add valuable content for the best user conversion.

<CardGroup cols={3}>
  <Card title="Customize Style" icon="palette" href="https://mintlify.com/docs/settings/global">
    Customize your docs to your company's colors and brands
  </Card>

  <Card title="Reference APIs" icon="code" href="https://mintlify.com/docs/api-playground/openapi">
    Automatically generate endpoints from an OpenAPI spec
  </Card>

  <Card title="Add Components" icon="screwdriver-wrench" href="https://mintlify.com/docs/components/accordion">
    Build interactive features and designs to guide your users
  </Card>
</CardGroup>

### Essentials blocks

Building blocks to make your documentation shine.

<CardGroup cols={3}>
  <Card title="Markdown Syntax" icon="text-size" href="/essentials/markdown" horizontal />

  <Card title="Code Blocks" icon="code" href="/essentials/code" horizontal />

  <Card title="Global Settings" icon="gear" href="/essentials/settings" horizontal />

  <Card title="Images and Embeds" icon="image" href="/essentials/images" horizontal />

  <Card title="Navigation" icon="map" href="/essentials/navigation" horizontal />

  <Card title="Reusable Snippets" icon="recycle" href="/essentials/reusable-snippets" horizontal />
</CardGroup>
