diff options
author | rohan09-raj <[email protected]> | 2022-08-21 01:46:36 +0530 |
---|---|---|
committer | rohan09-raj <[email protected]> | 2022-08-21 01:46:36 +0530 |
commit | 4480f2d62865a585f8bbf0cd7122a25d0413bf2b (patch) | |
tree | 228e2301b75c41aa68f8dacee83d61a4e4fa9c60 /client/src/pages/Update/UpdateSelect/UpdateSelect.jsx | |
parent | 16fa778ffaf82f2807d8b1821b78b6d878b93cb8 (diff) |
fixed update components
Diffstat (limited to 'client/src/pages/Update/UpdateSelect/UpdateSelect.jsx')
-rw-r--r-- | client/src/pages/Update/UpdateSelect/UpdateSelect.jsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx b/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx index e57587a..3c2edb3 100644 --- a/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx +++ b/client/src/pages/Update/UpdateSelect/UpdateSelect.jsx @@ -1,27 +1,27 @@ import { t } from 'i18next' import React from 'react' import { Link } from 'react-router-dom' - import Card from '../../../components/Card/Card' import Header from '../../../components/Header/Header' import SubmitButton from '../../../components/SubmitButton/SubmitButton' + import styles from './UpdateSelect.module.css' const UpdateSelect = () => { return ( <> - <Header subheading={t('MERA_AADHAAR_MERI_PEHCHAN')} /> + <Header subheading={t('UPDATE')} /> <div className={styles.card__container}> <Link to="/update/demographic"> <Card title={t('DEMOGRAPHIC')} - image={`${process.env.PUBLIC_URL}/assets/images/enrollment.svg`} + image={`${process.env.PUBLIC_URL}/assets/images/demographic.svg`} /> </Link> <Link to="/update/biometric"> <Card title={t('BIOMETRIC')} - image={`${process.env.PUBLIC_URL}/assets/images/update.svg`} + image={`${process.env.PUBLIC_URL}/assets/images/biometrics.svg`} /> </Link> <Link to="/update/agreement"> |