diff options
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"> |