import styles from './styles.module.scss' import { Container } from '@/components/Container/Container' import classNames from 'classnames' type TestimonyProps = { name?: string testimony: string occupation?: string } export const Testimony = ({ name, testimony, occupation }: TestimonyProps) => { return (

{testimony}

{typeof name === 'string' &&

{name} {occupation && <>- {occupation}}

}
) }