diff options
Diffstat (limited to 'client/src/components')
-rw-r--r-- | client/src/components/Card/CardAgreement.jsx | 20 | ||||
-rw-r--r-- | client/src/components/Card/CardAgreement.module.css | 30 | ||||
-rw-r--r-- | client/src/components/Card/CardBiometrics.jsx | 16 | ||||
-rw-r--r-- | client/src/components/Card/CardBiometrics.module.css | 26 |
4 files changed, 92 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 diff --git a/client/src/components/Card/CardAgreement.module.css b/client/src/components/Card/CardAgreement.module.css new file mode 100644 index 0000000..ed36cba --- /dev/null +++ b/client/src/components/Card/CardAgreement.module.css @@ -0,0 +1,30 @@ +@import '../../styles/GlobalVariables.css'; + +.card { + height: 400px; + width: 900px; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + border: 3px solid var(--color-black); + border-radius: 10px; + margin: 30px; + transition: 0.2s all; + cursor: pointer; + color: var(--color-black); + text-decoration-line: none; +} + +.card:active { + transform: scale(0.98); + box-shadow: 3px 2px 22px 1px var(--color-shadow); +} + +.card__title { + margin: 15px 0px; +} + +.card__image { + padding-bottom: 32px; +}
\ No newline at end of file diff --git a/client/src/components/Card/CardBiometrics.jsx b/client/src/components/Card/CardBiometrics.jsx new file mode 100644 index 0000000..49a913e --- /dev/null +++ b/client/src/components/Card/CardBiometrics.jsx @@ -0,0 +1,16 @@ +import React from 'react' +import styles from './CardBiometrics.module.css' +import SubmitButton from '../SubmitButton/SubmitButton' + +const CardBiometrics = ({ title, image }) => { + return ( + <> + <div className={styles.card}> + <img className={styles.card__image} src={image} alt="" /> + </div> + <SubmitButton /> + </> + ) +} + +export default CardBiometrics diff --git a/client/src/components/Card/CardBiometrics.module.css b/client/src/components/Card/CardBiometrics.module.css new file mode 100644 index 0000000..13bbbef --- /dev/null +++ b/client/src/components/Card/CardBiometrics.module.css @@ -0,0 +1,26 @@ +@import '../../styles/GlobalVariables.css'; + +.card { + height: 300px; + width: 300px; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + border: 3px solid var(--color-black); + border-radius: 10px; + margin: 30px; + transition: 0.2s all; + cursor: pointer; + color: var(--color-black); + text-decoration-line: none; +} + +.card:active { + transform: scale(0.98); + box-shadow: 3px 2px 22px 1px var(--color-shadow); +} + +.card__title { + margin: 15px 0px; +}
\ No newline at end of file |