packages/cloud-frontend/content/index.mdx
import { Cards, Callout } from "@/docs/components";
<section className="docs-hero"> <div className="docs-hero-content"> <div className="docs-hero-badge"> <span className="docs-hero-badge-dot"></span> <span>Documentation</span> </div> <h1 className="docs-hero-title"> <span className="docs-hero-title-line"> <strong>Build</strong> Agents </span> </h1> <p className="docs-hero-description"> The complete platform for building, deploying, and scaling intelligent AI agents. Production-ready infrastructure with enterprise-grade reliability. </p> <div className="docs-hero-actions"> <a href="/docs/quickstart" className="docs-hero-btn-primary"> <span>Get Started</span> <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M3 8h10M9 4l4 4-4 4" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" /> </svg> </a> <a href="/dashboard" className="docs-hero-btn-secondary"> Open Dashboard </a> </div> </div> </section> <div className="docs-section">All API requests require authentication via API key:
curl https://elizacloud.ai/api/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "your-agent-id",
"messages": [{"role": "user", "content": "Hello!"}]
}'