> ## Documentation Index
> Fetch the complete documentation index at: https://docs.juncta.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Get an overview of Juncta and how to get started.

export const RelatedLinks = ({title = "Related links", links}) => <div>
    <h2>{title}</h2>
    <ul>
      {links.map((link, i) => <li key={i}>
          <a href={link.href}>{link.label}</a>
        </li>)}
    </ul>
  </div>;

Juncta is a Dynamic Liquidity Market Maker (DLMM) with a fully integrated lending market. The same liquidity that powers trading also powers lending, using a single pool of reserves.

## Quickstart

<Columns cols={2}>
  <Card title="Liquidity Providers" icon="droplets" color="#0FD99A" href="/user-guide/liquidity-providers/how-to-provide-liquidity-on-juncta">
    Learn how to deposit liquidity, choose a bin strategy, and earn trading fees
    and lending yield simultaneously.
  </Card>
</Columns>

<RelatedLinks
  links={[
{
  label: "How to deposit liquidity",
  href: "/user-guide/for-lps/what-it-means-to-provide-liquidity",
},
{
  /* {
  label: "How to borrow against your LP position",
  href: "/user-guide/for-borrowers/how-borrowing-works",
},
{
  label: "SDK installation and setup",
  href: "/developer-guide/getting-started/architecture-overview",
},
{
  label: "The unified reserve model — full specification",
  href: "/protocol/architecture/unified-reserve-model",
}, */
},
]}
/>
