type Props = { proposal: string; }; export default function ProposalDraft({ proposal }: Props) { return (

Technical Proposal Draft

Automatically generated framework based on expert agent consensus.

{proposal ? (
Generated Strategy Document
              {proposal}
            
) : (
📝

Run a specialized analysis to generate a custom proposal.

)}
); }