diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-01-29 23:38:13 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-01-29 23:38:13 +0100 |
| commit | 82d310403c4bb09bc2f0a204b6374934a10cf348 (patch) | |
| tree | 488e93e373a7d9215531bb8fcfc37bcbb290d0fa /src/components/Copyright | |
| parent | f49dfba86b9ac745ddc374ee0f02f03d7e81d872 (diff) | |
refactor(config): move config from config dir to utils
Diffstat (limited to 'src/components/Copyright')
| -rw-r--r-- | src/components/Copyright/Copyright.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/Copyright/Copyright.tsx b/src/components/Copyright/Copyright.tsx index 9a57f9c..7ea3829 100644 --- a/src/components/Copyright/Copyright.tsx +++ b/src/components/Copyright/Copyright.tsx @@ -1,14 +1,14 @@ import { CopyrightIcon } from '@components/Icons'; -import { config } from '@config/website'; +import { settings } from '@utils/config'; import styles from './Copyright.module.scss'; const Copyright = () => { return ( <p className={styles.wrapper}> - <span>{config.name}</span> + <span>{settings.name}</span> <CopyrightIcon /> <span> - {config.copyright.startYear} - {config.copyright.endYear} + {settings.copyright.startYear} - {settings.copyright.endYear} </span> </p> ); |
