import type { ConsultantProfile } from "@/lib/proposal/profile"; import { CheckCircle2 } from "lucide-react"; type Props = { consultant: ConsultantProfile }; export function StrategistSection({ consultant }: Props) { return (
{/* Foto */}
{consultant.photoUrl ? ( {consultant.name} ) : ( {consultant.name[0]} )}
{/* Bio */}

Strategist ยท Brand & Business

{consultant.name}

{consultant.bio}

    {consultant.credentials.map((c, i) => (
  • ))}
{consultant.contact.website && ( {consultant.contact.website} )}
); }