> ## 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.

# Examples Hub

> Explore Para's examples hub for integration patterns across web, mobile, and specific use cases

export const Link = ({href, label, newTab = false}) => {
  const [isHovered, setIsHovered] = useState(false);
  return <a href={href} target={newTab ? '_blank' : '_self'} rel={newTab ? 'noopener noreferrer' : undefined} className="not-prose inline-block relative text-black font-semibold cursor-pointer border-b-0 no-underline" onMouseEnter={() => setIsHovered(true)} onMouseLeave={() => setIsHovered(false)}>
      {label}
      <span className={`absolute left-0 bottom-0 w-full rounded-sm bg-gradient-to-r from-orange-600 to-purple-600 transition-all duration-300 ${isHovered ? 'h-0.5' : 'h-px'}`} />
    </a>;
};

Para provides a comprehensive collection of examples to help you integrate our technology across various platforms, frameworks, and use cases. Our <Link label="Examples Hub" href="https://github.com/getpara/examples-hub/tree/3.0.0" /> repository contains working code samples for all supported platforms.

<Tip>
  Looking for community-created examples? Check out <Link label="Awesome Para" href="https://github.com/getpara/awesome-para" /> for community-featured examples and integrations from bounties and hackathons covering Account Abstraction, Agents, Pregeneration, and more!
</Tip>

## Web Framework Examples

<CardGroup cols={2}>
  <Card title="Next.js" imgUrl="/images/v3/framework-nextjs.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/web/with-react-nextjs/" description="Next.js examples with Server-Side Rendering and client components" horizontal />

  <Card title="React + Vite" imgUrl="/images/v3/framework-react-vite.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/web/with-react-vite/" description="React application with Vite for faster development" horizontal />

  <Card title="Vue" imgUrl="/images/v3/framework-vue-vite.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/web/with-vue-vite/" description="Vue.js integration with custom UI components" horizontal />

  <Card title="Svelte" imgUrl="/images/v3/framework-svelte-vite.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/web/with-svelte-vite/" description="Svelte framework integration examples" horizontal />
</CardGroup>

## Server Examples

<CardGroup cols={3}>
  <Card title="Node.js" imgUrl="/images/v3/framework-node.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/server/with-node/" description="Node.js server examples with Express" />

  <Card title="Deno" imgUrl="/images/v3/framework-deno.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/server/with-deno/" description="Deno runtime integration examples" />

  <Card title="Bun" imgUrl="/images/v3/framework-bun.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/server/with-bun/" description="Bun runtime server integration examples" />
</CardGroup>

## Mobile Examples

Para SDK supports React Native, Flutter, and Swift for native mobile experiences:

<CardGroup cols={2}>
  <Card title="Flutter" imgUrl="/images/v3/framework-flutter.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/mobile/with-flutter" description="Flutter integration with native passkey support" horizontal />

  <Card title="React Native" imgUrl="/images/v3/framework-react-native.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/mobile/with-react-native/" description="React Native integration for Android and iOS" horizontal />

  <Card title="Expo" imgUrl="/images/v3/framework-expo.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/mobile/with-expo-one-click-login" description="Para integration in Expo managed workflow" horizontal />

  <Card title="Swift" imgUrl="/images/v3/framework-swift.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/mobile/with-swift" description="Native iOS integration with Swift" horizontal />
</CardGroup>

## Popular Feature Examples

<CardGroup cols={3}>
  <Card title="Wallet Pregeneration & Claiming" imgUrl="/images/v3/feature-pregeneration.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/web/with-react-nextjs/para-pregen-claim" description="Create and claim pregenerated wallets for seamless onboarding" />

  <Card title="Client Auth + Server Signing" imgUrl="/images/v3/general-examples.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/advanced-patterns/client-auth-server-sign" description="Authenticate with client and sign transactions server-side" />
</CardGroup>

## Blockchain Integration Examples

<CardGroup cols={2}>
  <Card title="EVM External Wallets" imgUrl="/images/v3/network-evm.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/web/with-react-nextjs/para-modal-evm" description="Connect with external EVM wallets via Para Modal" horizontal />

  <Card title="Solana External Wallets" imgUrl="/images/v3/network-solana.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/web/with-react-nextjs/para-modal-solana" description="Integrate with Solana wallets in Para Modal" horizontal />

  <Card title="Cosmos External Wallets" imgUrl="/images/v3/network-cosmos.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/web/with-react-nextjs/para-modal-cosmos" description="Connect Cosmos wallets through Para Modal" horizontal />
</CardGroup>

## Transaction Signing Libraries

<CardGroup cols={3}>
  <Card title="Ethers.js" imgUrl="/images/v3/signer-ethers.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/web/with-react-nextjs/signer-ethers-v6" description="Sign EVM transactions with Ethers.js v6" />

  <Card title="Viem" imgUrl="/images/v3/signer-viem.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/web/with-react-nextjs/signer-viem-v2" description="Sign EVM transactions with Viem v2" />

  <Card title="CosmJS" imgUrl="/images/v3/signer-cosmjs.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/web/with-react-nextjs/signer-cosmjs" description="Sign Cosmos transactions with CosmJS" />

  <Card title="Solana Web3.js" imgUrl="/images/v3/signer-web3js.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/web/with-react-nextjs/signer-solana-web3" description="Sign Solana transactions with Web3.js" />

  <Card title="Solana Anchor" imgUrl="/images/v3/signer-anchor.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/web/with-react-nextjs/signer-solana-anchor" description="Use Anchor with Para for Solana programs" />
</CardGroup>

## DeFi Integration Examples

<Card title="Jupiter DEX API" imgUrl="/images/v3/feature-jupiter-dex.png" href="https://github.com/getpara/examples-hub/tree/3.0.0/defi-integrations/with-jupiter-dex-api" description="Integrate Para with Jupiter DEX API for Solana swaps" horizontal />

## Community Contributions

<Card horizontal title="Awesome Para" imgUrl="/images/v3/awesome-para.png" href="https://github.com/getpara/awesome-para" description="Explore community-contributed examples, libraries, and integrations" />

## Need Something Specific?

Don't see an example for your use case? Para's team is eager to create new examples to help you integrate with different libraries, third-party features, or providers.
