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

# Explore All Products

> Explore all the OneBalance products from our Toolkit API, consumer app and our innovative cross-chain technology Resource Locks.

export const AllProducts = () => {
  return <div className="max-w-7xl mx-auto space-y-12">
      {ALL_PRODUCTS.map((category, categoryIndex) => <div key={categoryIndex} className="space-y-6">
          <h2 className="text-lg font-semibold opacity-80">
            {category.category}
          </h2>
          <CardGroup cols={3} className="[&_.card]:border-0 [&_.card]:shadow-none [&_.card]:hover:shadow-md [&_.card]:transition-shadow">
            {category.items.map((product, productIndex) => <Card key={productIndex} title={product.title} icon={product.icon} href={product.href} className="border-0 shadow-none hover:shadow-md transition-shadow">
                {product.description}
              </Card>)}
          </CardGroup>
        </div>)}
    </div>;
};

export const ALL_PRODUCTS = [{
  category: 'OneBalance Toolkit',
  items: [{
    title: 'Developer API',
    description: 'Integrate chain-abstracted operations directly into your application',
    icon: 'code',
    href: '/api-reference/introduction'
  }, {
    title: 'MCP Server',
    description: 'Connect AI agents to blockchain operations with our Model Context Protocol',
    icon: 'cpu',
    href: '/ai/mcp-server-setup'
  }]
}, {
  category: 'OneApp',
  items: [{
    title: 'User Dashboard',
    description: 'Complete dashboard for managing chain-abstracted assets and operations',
    icon: 'gauge',
    href: 'https://app.onebalance.io'
  }, {
    title: 'Account Management',
    description: 'Smart contract account management and signer controls',
    icon: 'user',
    href: '#'
  }]
}, {
  category: 'Resource Locks as a Service (Coming Soon)',
  items: [{
    title: 'Resource Locks',
    description: 'The foundation of chain-abstracted operations and fast transactions',
    icon: 'lock',
    href: '/concepts/resource-locks'
  }, {
    title: 'Transaction Lifecycle',
    description: 'Understanding how transactions flow through the OneBalance system',
    icon: 'git-branch',
    href: '/concepts/transaction-lifecycle'
  }, {
    title: 'Account Models',
    description: 'Smart contract account management with flexible validation',
    icon: 'user-check',
    href: '/concepts/accounts'
  }]
}];

Browse our products and solutions for building seamless chain-abstracted experiences.

## Browse by Product

<AllProducts />
