docs: add step-by-step custom executor tutorial

- Create comprehensive tutorial at /docs/tutorials/custom-executor
- Walk through from zero to running custom executor in 6 steps
- Cover prerequisites, Vercel deployment, environment config
- Include verification, testing, and connection to collections
- Add troubleshooting section for common issues
- Link tutorial from tutorials index and executors reference page
This commit is contained in:
Ajax Davis 2026-01-09 00:55:54 +10:00
parent b6a553341a
commit 346a3f6da0
3 changed files with 575 additions and 0 deletions

View file

@ -50,6 +50,27 @@ export default function ExecutorsDocsPage(): React.ReactElement {
</p>
</div>
{/* Quick Start Banner */}
<section className="mb-12">
<Link
href="/docs/tutorials/custom-executor"
className="block p-4 bg-gradient-to-r from-primary/10 via-primary/5 to-transparent border border-primary/30 rounded-lg hover:border-primary/50 transition-colors"
>
<div className="flex items-center gap-4">
<div className="text-3xl">🚀</div>
<div className="flex-1">
<p className="font-medium text-foreground">
New to custom executors? Start with the tutorial
</p>
<p className="text-sm text-foreground-secondary">
Deploy your own executor in 10 minutes with our step-by-step guide
</p>
</div>
<Icon icon="chevronRight" className="w-5 h-5 text-primary" />
</div>
</Link>
</section>
{/* Overview Section */}
<section className="mb-12">
<h2 className="text-2xl font-semibold text-foreground mb-4">What is an Executor?</h2>