blob: fe4edb1e0cd956d7676b24e07e6b52065df37a31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import React from 'react'
import styles from './CardAgreement.module.css'
import { Typography } from '@mui/material'
import { useTranslation } from 'react-i18next'
const CardAgreement = ({ title, image }) => {
const { t } = useTranslation()
return (
<>
<div className={styles.card}>
<img className={styles.card__image} src={image} alt="" />
<Typography align="center">
{t('I_HEREBY_CONFIRM_THE_IDENTITY_AND_ADDRESS')}
</Typography>
</div>
</>
)
}
export default CardAgreement
|