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

# Reserve Folio Documentation

<div className="relative bg-gradient-to-br from-[#059669] via-[#10b981] to-[#34d399] dark:from-[#064e3b] dark:via-[#065f46] dark:to-[#047857] py-20">
  <div className="absolute inset-0 bg-black/20 dark:bg-black/40" />

  <div className="relative max-w-6xl mx-auto px-6 lg:px-8">
    <div className="grid lg:grid-cols-12 gap-12 items-center">
      <div className="lg:col-span-7">
        <h1 className="text-5xl lg:text-6xl font-bold text-white mb-6">
          Reserve Folio Protocol
        </h1>

        <p className="text-xl text-white/90 mb-8 max-w-2xl">
          Create and manage permissionless index assets with semi-permissioned rebalancing via Dutch auctions
        </p>

        <div className="flex flex-wrap gap-4">
          <a href="/quickstart" className="inline-flex items-center px-6 py-3 rounded-lg bg-white text-[#10b981] font-semibold hover:bg-gray-100 transition-colors no-underline">
            Get Started
          </a>

          <a href="/architecture" className="inline-flex items-center px-6 py-3 rounded-lg border-2 border-white/30 bg-white/10 text-white font-semibold hover:bg-white/20 transition-colors no-underline">
            View Architecture
          </a>
        </div>
      </div>
    </div>
  </div>
</div>

<div className="mt-16 mb-16 max-w-5xl mx-auto px-6">
  <h2 className="text-3xl font-bold text-gray-900 dark:text-white mb-4">
    Quick start
  </h2>

  <p className="text-base text-gray-600 dark:text-gray-400 mb-8">
    Get up and running with Reserve Folio in minutes
  </p>

  <Steps>
    <Step title="Install dependencies">
      Clone the repository and install the required tools: Foundry, Node.js v20+, and Yarn.

      ```bash theme={null}
      git clone https://github.com/reserve-protocol/reserve-index-dtf.git
      cd reserve-index-dtf
      yarn install
      ```
    </Step>

    <Step title="Compile contracts">
      Build the Solidity contracts using Foundry.

      ```bash theme={null}
      yarn compile
      ```
    </Step>

    <Step title="Deploy a Folio">
      Use the FolioDeployer to create your first index portfolio. You'll need to specify the initial basket of assets, fee structure, and governance parameters.

      <Note>
        Check out the [Deploying a Folio](/guides/deploying-folio) guide for detailed deployment instructions.
      </Note>
    </Step>

    <Step title="Start rebalancing">
      Configure rebalancing parameters and launch Dutch auctions to adjust your portfolio composition.

      ```solidity theme={null}
      folio.startRebalance(tokens, limits, ttl);
      folio.openAuction(tokens, weights, prices, limits, auctionLength);
      ```
    </Step>
  </Steps>
</div>

<div className="mt-16 mb-16 max-w-5xl mx-auto px-6">
  <h2 className="text-3xl font-bold text-gray-900 dark:text-white mb-4">
    Core features
  </h2>

  <p className="text-base text-gray-600 dark:text-gray-400 mb-8">
    Explore what makes Reserve Folio powerful
  </p>

  <CardGroup cols={3}>
    <Card title="Permissionless minting" icon="coins" href="/guides/minting-redeeming">
      Mint and redeem Folio shares at any time with pro-rata basket composition
    </Card>

    <Card title="Dutch auctions" icon="gavel" href="/concepts/auctions">
      Rebalance portfolios efficiently using exponential decay price curves
    </Card>

    <Card title="Role-based governance" icon="users-gear" href="/concepts/governance">
      Secure governance with timelocks and role-based access control
    </Card>

    <Card title="Flexible baskets" icon="basket-shopping" href="/concepts/folios">
      Support any ERC20 tokens with dynamic weight adjustments
    </Card>

    <Card title="Fee structures" icon="percent" href="/concepts/fees">
      TVL and mint fees with DAO revenue sharing
    </Card>

    <Card title="Multi-chain support" icon="network-wired" href="/development/deployment">
      Deploy on Ethereum, Base, BSC, and other EVM chains
    </Card>
  </CardGroup>
</div>

<div className="mt-16 mb-16 max-w-5xl mx-auto px-6">
  <h2 className="text-3xl font-bold text-gray-900 dark:text-white mb-4">
    Explore the protocol
  </h2>

  <p className="text-base text-gray-600 dark:text-gray-400 mb-8">
    Deep dive into core concepts and smart contracts
  </p>

  <CardGroup cols={2}>
    <Card title="Core concepts" icon="lightbulb" href="/concepts/folios">
      Understand Folios, rebalancing, auctions, and governance mechanisms
    </Card>

    <Card title="Smart contracts" icon="file-contract" href="/contracts/folio">
      Explore the Folio, StakingVault, and deployer contract documentation
    </Card>

    <Card title="Integration guides" icon="puzzle-piece" href="/guides/deploying-folio">
      Step-by-step guides for deploying and managing your Folio
    </Card>

    <Card title="Advanced topics" icon="graduation-cap" href="/advanced/trusted-fillers">
      Learn about trusted fillers, price control, and security considerations
    </Card>
  </CardGroup>
</div>

<div className="mt-16 mb-16 max-w-5xl mx-auto px-6">
  <div className="rounded-2xl border border-gray-200 dark:border-[#27272a] bg-gray-50 dark:bg-[#1a1d27] p-8">
    <h2 className="text-2xl font-bold text-gray-900 dark:text-white mb-3">
      Ready to build?
    </h2>

    <p className="text-base text-gray-600 dark:text-gray-400 mb-6">
      Start creating permissionless index assets with Reserve Folio today
    </p>

    <div className="flex flex-wrap gap-4">
      <a href="/quickstart" className="inline-flex items-center px-5 py-2.5 rounded-lg bg-[#10b981] text-white font-semibold hover:bg-[#059669] transition-colors no-underline">
        Get Started
      </a>

      <a href="https://github.com/reserve-protocol/reserve-index-dtf" className="inline-flex items-center px-5 py-2.5 rounded-lg border border-gray-300 dark:border-[#27272a] bg-white dark:bg-[#242838] text-gray-900 dark:text-white font-semibold hover:bg-gray-100 dark:hover:bg-[#2d3142] transition-colors no-underline">
        View on GitHub
      </a>
    </div>
  </div>
</div>
