import type { ProposalContent } from "@/lib/proposal/schema"; import { CheckCircle2 } from "lucide-react"; type Props = { scope: ProposalContent["scope"] }; export function ScopeSection({ scope }: Props) { return (
{/* Scope */}

Scope · Capitolo del lavoro

{scope.scopeTitle}

{scope.scopeBody}

{/* Obiettivi */}

Obiettivi · Punti d'arrivo

Quattro risultati concreti, misurabili al termine.

    {scope.objectives.map((obj, i) => (
  • ))}
); }