Probo Krishnacahya, S.Kom., CSBP. // Hi, peeps! interface ProfileProps { fullName: string; specializations: string[]; } const Profile: React.FC<ProfileProps> = ({ fullName, specializations }) => ( <> <h1>{fullName}</h1> <h2>{specializations.join(', ')}</h2> </> ); export default function About() { return ( <Profile fullName="Probo Krishnacahya" specializations={['UI/UX Designer', 'Web Designer', 'Mobile Application Designer', 'Product Designer', 'Visual Designer', 'UI Engineer', 'Frontend Developer']} /> ); }