summaryrefslogtreecommitdiff
path: root/client/src/components/Card/CardAgreement.jsx
diff options
context:
space:
mode:
authorBlaster4385 <[email protected]>2022-08-02 08:56:48 +0530
committerBlaster4385 <[email protected]>2022-08-02 08:56:48 +0530
commit905dc038ca2e4bbb315c4c583c94a96948e68fa9 (patch)
treece04b0994c171e9f1c939dd91aa2f05d2c03a9f7 /client/src/components/Card/CardAgreement.jsx
parent5f8f6f98c2c47ca878aadb893b0d64a0c66316aa (diff)
Add remaining pages
Diffstat (limited to 'client/src/components/Card/CardAgreement.jsx')
-rw-r--r--client/src/components/Card/CardAgreement.jsx20
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