import styles from './styles.module.css' import { Container } from '@/components/Container/Container' import classNames from 'classnames' import { faustina } from '@/app/fonts' import Image from 'next/image' import quote from './quotes.svg' type TestimonyProps = { name: string testimony: string occupation?: string } export const Testimony = ({ name, testimony, occupation }: TestimonyProps) => { return (
{'Quote'}

{testimony}

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

) }