summaryrefslogtreecommitdiffstats
path: root/src/components/Footer/Footer.tsx
blob: 12d86ce71f2ea220e1c2826053138a33b4f1cb96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Copyright from '@components/Copyright/Copyright';
import FooterNav from '@components/FooterNav/FooterNav';
import styles from './Footer.module.scss';

const Footer = () => {
  return (
    <footer className={styles.wrapper}>
      <Copyright />
      <FooterNav />
    </footer>
  );
};

export default Footer;