import React from 'react'; import { Book, Code, Terminal, Zap } from 'lucide-react'; import Button from './ui/Button'; const Documentation: React.FC = () => { return (
Developers First

Build with our API

Integrate user simulation directly into your CI/CD pipeline or product workflow. Get started for free.

{/* Code Snippet Card */}
# Install the SDK
$ npm install @aux/sdk
# Run a simulation
import
{`{ AuxClient }`}
from
'@aux/sdk'
;

const
client
=
new
AuxClient
({`{ apiKey: '...' }`});

const
result
=
await
client.simulation.
create
({`{`}
  audience:
'tech-founders'
,
  content:
'https://myapp.com/launch'

{`}`});
{/* Docs Links Grid */}

Quick Start Guide

Deploy your first simulation in under 5 minutes.

API Reference

Detailed endpoints, parameters, and response types.

SDKs & Libraries

Official libraries for Node.js, Python, and Go.

Webhooks

Real-time event notifications for your integrations.

); }; export default Documentation;