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

# Overview

> An introduction to mobile integrations with Para

export const Card = ({imgUrl, title, description, href, horizontal = false, newTab = false}) => {
  const [isHovered, setIsHovered] = useState(false);
  const handleClick = e => {
    e.preventDefault();
    if (newTab) {
      window.open(href, '_blank', 'noopener,noreferrer');
    } else {
      window.location.href = href;
    }
  };
  return <div className={`not-prose relative my-2 p-[1px] rounded-xl transition-all duration-300 ${isHovered ? 'bg-gradient-to-r from-[#FF4E00] to-[#874AE3]' : 'bg-gray-200'}`} onMouseEnter={() => setIsHovered(true)} onMouseLeave={() => setIsHovered(false)}>
      <a href={href} onClick={handleClick} className={`not-prose flex ${horizontal ? 'flex-row' : 'flex-col'} font-normal h-full bg-white overflow-hidden w-full cursor-pointer rounded-[11px] no-underline`}>
        {imgUrl && <div className={`relative overflow-hidden flex-shrink-0 ${horizontal ? 'w-[30%] rounded-l-[11px]' : 'w-full'}`} onClick={e => e.stopPropagation()}>
            <img src={imgUrl} alt={title} className="w-full h-full object-cover pointer-events-none select-none" draggable="false" />
            <div className="absolute inset-0 pointer-events-none" />
          </div>}
        <div className={`flex-grow px-6 py-5 ${horizontal ? 'w-[70%]' : 'w-full'} flex flex-col ${horizontal && imgUrl ? 'justify-center' : 'justify-start'}`}>
          {title && <h2 className="font-semibold text-base text-gray-800 m-0">{title}</h2>}
          {description && <div className={`font-normal text-gray-500 re leading-6 ${horizontal || !imgUrl ? 'mt-0' : 'mt-1'}`}>
              <p className="m-0 text-xs">{description}</p>
            </div>}
        </div>
      </a>
    </div>;
};

Para supports modern mobile development frameworks, giving you the flexibility to implement our SDKs in your native mobile applications. Each integration guide provides step-by-step instructions tailored to specific mobile development environments.

## Set Up Your Framework

<CardGroup cols={2}>
  <Card title="React Native (Bare Workflow)" imgUrl="/images/v2/framework-react-native.png" href="/v2/react-native/setup/react-native" description="Set up the Para SDK in a bare React Native project." horizontal />

  <Card title="Expo Development Build" imgUrl="/images/v2/framework-expo.png" href="/v2/react-native/setup/expo" description="Set up the Para SDK in an Expo project." horizontal />
</CardGroup>

## Add Authentication

<CardGroup cols={2}>
  <Card title="Email & Phone Login" imgUrl="/images/v2/custom-ui-social.png" href="/v2/react-native/guides/add-email-phone" description="Authenticate users with email or phone — the default and simplest path." horizontal />

  <Card title="Social Login" imgUrl="/images/v2/custom-ui-social.png" href="/v2/react-native/guides/add-social-login" description="Authenticate with Google, Apple, Discord, X, Farcaster, and more." horizontal />
</CardGroup>

## Enhance Security

<CardGroup cols={2}>
  <Card title="Add Passkeys" imgUrl="/images/v2/general-passwords.png" href="/v2/react-native/guides/add-passkeys" description="Add native biometric authentication (Face ID, Touch ID, fingerprint)." horizontal />

  <Card title="Add Password or PIN" imgUrl="/images/v2/general-passwords.png" href="/v2/react-native/guides/add-password-pin" description="Add password or PIN-based authentication via Para's portal." horizontal />
</CardGroup>

## Sign & Transact

<CardGroup cols={3}>
  <Card title="EVM Integration" imgUrl="/images/v2/network-evm.png" href="/v2/react-native/guides/evm" description="Use Para with EVM-compatible chains in mobile apps." />

  <Card title="Solana Integration" imgUrl="/images/v2/network-solana.png" href="/v2/react-native/guides/solana" description="Integrate Para with Solana in your mobile applications." />

  <Card title="Cosmos Integration" imgUrl="/images/v2/network-cosmos.png" href="/v2/react-native/guides/cosmos" description="Explore Para integration with the Cosmos ecosystem." />

  <Card title="Stellar Integration" imgUrl="/images/v2/network-stellar.png" href="/v2/react-native/guides/web3-operations/stellar/setup-libraries" description="Integrate Para with Stellar in your mobile applications." />
</CardGroup>

## Sessions & Advanced

<CardGroup cols={3}>
  <Card title="Session Management" imgUrl="/images/v2/general-sessions.png" href="/v2/react-native/guides/sessions" description="Manage user sessions in mobile apps." />

  <Card title="Pregenerate Wallets" imgUrl="/images/v2/feature-pregeneration.png" href="/v2/react-native/guides/pregen" description="Work with pregenerated wallets." />

  <Card title="Custom Storage" imgUrl="/images/v2/general-storage.png" href="/v2/react-native/guides/custom-storage" description="Configure custom storage for key material." />
</CardGroup>
