import { PeopleModalTrigger } from '@/components/aia/modal-wrapper'; type PeopleExecutiveCardProps = { customClass?: string | null; portrait: string; name: string; title: string; text?: string | null; positions: string[]; readMoreButton?: boolean; // 是否顯示「Read more」按鈕 }; export default function PeopleExecutiveCard({ customClass = "", portrait = "", name = "", title = "", text = "", positions = [ ], readMoreButton = false, }: PeopleExecutiveCardProps) { return (
{title}
{!readMoreButton && text && ({text})}