diff options
author | Blaster4385 <[email protected]> | 2022-08-16 16:35:00 +0530 |
---|---|---|
committer | Blaster4385 <[email protected]> | 2022-08-17 16:38:54 +0530 |
commit | a6489c671275fc9bf21ec6bdd7db4cb47da86f2c (patch) | |
tree | db1e71104554c70a28ddd6dcb432716022599167 /client/src/components/Header/Header.jsx | |
parent | 3e7f5cbd876b29c92fc1cda58aa54a9c591ef026 (diff) |
Mega random super bullshit
Diffstat (limited to 'client/src/components/Header/Header.jsx')
-rw-r--r-- | client/src/components/Header/Header.jsx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/client/src/components/Header/Header.jsx b/client/src/components/Header/Header.jsx index 1116312..d5e08c4 100644 --- a/client/src/components/Header/Header.jsx +++ b/client/src/components/Header/Header.jsx @@ -1,12 +1,10 @@ import React from 'react' -import { useTranslation } from 'react-i18next' import styles from './Header.module.css' const Header = ({ subheading }) => { - const { t } = useTranslation() return ( <header className={styles.header}> - <h1 className={styles.header__heading}>{t('AADHAAR')}</h1> + <img src={`${process.env.PUBLIC_URL}/favicon.ico`} /> <h3 className={styles.header__subheading}>{subheading}</h3> </header> ) |