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

# Use Cases

export const VCard = ({img, light, dark, icon, href, title, description, target = "_self"}) => {
  return <div className="spark-card overflow-hidden rounded-2xl flex justify-center items-center hover:scale-[1.02] transition-all duration-300">
      <a href={href} target={target} rel={target === "_blank" ? "noopener noreferrer" : undefined} className="w-full">
        <div className="vcard-col">
          <div className="vcard-image w-full aspect-video relative">
            {light && dark ? <>
                <img src={light} alt={title} className="icon-light w-full h-full object-cover pointer-events-none" />
                <img src={dark} alt={title} className="icon-dark w-full h-full object-cover pointer-events-none" />
              </> : <div className="w-full h-full bg-cover bg-center bg-no-repeat" style={{
    backgroundImage: `url(${img})`
  }} />}
          </div>
          <div className="vcard-content flex flex-col gap-2 p-6">
            <h2 className="card-title text font-semibold leading-none">
              {title}
            </h2>
            <p className="card-description text-sm leading-tight">
              {description}
            </p>
          </div>
        </div>
      </a>
    </div>;
};

Spark makes Bitcoin fast enough to build on. We're building the infrastructure that makes Bitcoin the definitive platform for payments, wallets, and stablecoins. Where new kinds of apps can finally exist on the world's most secure ledger.

## Payments

Global transfers, tipping, merchant apps, and more payment solutions built on Bitcoin.

<Columns cols="3" className="gap-4 chill">
  <VCard title="P2P/Banking Wallet" light="/images/usecases/uc-p2p-wallet-light.png" dark="/images/usecases/uc-p2p-wallet.png" description="Build direct, self-custody wallets that settle instantly over Bitcoin" />

  <VCard title="Cross-border Payments" light="/images/usecases/uc-cross-border-light.png" dark="/images/usecases/uc-cross-border.png" description="Enable global remittance using BTC or stablecoins as the underlying rails" />

  <VCard title="Social Tipping" light="/images/usecases/uc-social-tipping-light.png" dark="/images/usecases/uc-social-tipping.png" description="Add micro-payments and tipping directly into content or social platforms" />

  <VCard title="Global USD Accounts" light="/images/usecases/uc-global-usd-light.png" dark="/images/usecases/uc-global-usd.png" description="Create on-chain USD-denominated wallets and accounts with instant transfers" />
</Columns>

## DeFi

Liquidity pools, tokenized BTC, swaps, and decentralized finance protocols.

<Columns cols="3" className="gap-4 chill">
  <VCard title="DeFi Wallet" light="/images/usecases/uc-defi-wallet-light.png" dark="/images/usecases/uc-defi-wallet.png" description="Self-custody wallets optimized for DeFi protocols and token management" />

  <VCard title="Trading Platforms" light="/images/usecases/uc-trading-light.png" dark="/images/usecases/uc-trading.png" description="Build DEXs for BTC, stablecoins, and tokens with Bitcoin-level finality" />

  <VCard title="Token Launchpad" light="/images/usecases/uc-launchpad-light.png" dark="/images/usecases/uc-launchpad.png" description="Launch new tokens and assets with seamless minting and distribution" />
</Columns>

## Rewards

Bitcoin cashback, loyalty, micro-incentives, and reward-based applications.

<Columns cols="3" className="gap-4 chill">
  <VCard title="Bitcoin Cashbacks" light="/images/usecases/uc-cashbacks-light.png" dark="/images/usecases/uc-cashbacks.png" description="Let users earn BTC or tokens every time they shop or spend" />

  <VCard title="Play to Earn" light="/images/usecases/uc-p2e-light.png" dark="/images/usecases/uc-p2e.png" description="Reward any action with any token or stablecoin" />

  <VCard title="Referrals" light="/images/usecases/uc-referrals-light.png" dark="/images/usecases/uc-referrals.png" description="Pay users instantly for driving sign-ups, transactions, or sales" />

  <VCard title="Point Conversions" light="/images/usecases/uc-points-light.png" dark="/images/usecases/uc-points.png" description="Create interoperable loyalty tokens that convert to Bitcoin or stablecoins" />
</Columns>
