aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Copyright/Copyright.tsx
blob: d2de2e99fa1091d0107ceb8ff2bf5c5db3ac5db7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { CopyrightIcon } from '@components/Icons';
import { settings } from '@utils/config';
import styles from './Copyright.module.scss';

const Copyright = () => {
  return (
    <p className={styles.wrapper}>
      <span className={styles.name}>{settings.name}</span>
      <CopyrightIcon />
      <span>
        {settings.copyright.startYear} - {settings.copyright.endYear}
      </span>
    </p>
  );
};

export default Copyright;