diff options
Diffstat (limited to 'client/src/components/Card/CardAgreement.jsx')
-rw-r--r-- | client/src/components/Card/CardAgreement.jsx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/client/src/components/Card/CardAgreement.jsx b/client/src/components/Card/CardAgreement.jsx new file mode 100644 index 0000000..245cdbb --- /dev/null +++ b/client/src/components/Card/CardAgreement.jsx @@ -0,0 +1,20 @@ +import React from 'react' +import styles from './CardAgreement.module.css' +import SubmitButton from '../SubmitButton/SubmitButton' +import { Typography } from '@mui/material' + +const CardAgreement = ({ title, image }) => { + return ( + <> + <div className={styles.card}> + <img className={styles.card__image} src={image} alt="" /> + <Typography> + I hereby confirm the identity and address of ___________ as being true, correct and accurate. + </Typography> + </div> + <SubmitButton /> + </> + ) +} + +export default CardAgreement |