'use client'; import { CodeBlock } from '@/components/code-block'; import { ChevronDown, ChevronRight } from 'lucide-react'; import { useState } from 'react'; /** * Client island: the "audit the generated code before you fork" toggle. Kept * out of the server-rendered page so the page itself stays static + indexable. */ export function CollapsibleCode({ code }: { code: string }) { const [show, setShow] = useState(false); return (

Audit before you fork. We re-scan every published template for banned patterns (eval, child_process, prompt-injection markers).

{show && (
)}
); }