From 905dc038ca2e4bbb315c4c583c94a96948e68fa9 Mon Sep 17 00:00:00 2001 From: Blaster4385 Date: Tue, 2 Aug 2022 08:56:48 +0530 Subject: Add remaining pages --- client/src/components/Card/CardAgreement.jsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 client/src/components/Card/CardAgreement.jsx (limited to 'client/src/components/Card/CardAgreement.jsx') 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 ( + <> +
+ + + I hereby confirm the identity and address of ___________ as being true, correct and accurate. + +
+ + + ) +} + +export default CardAgreement -- cgit