summaryrefslogtreecommitdiffstats
path: root/src/components/Footer/Footer.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2021-12-13 22:52:24 +0100
committerArmand Philippot <git@armandphilippot.com>2021-12-13 22:52:24 +0100
commite8a61bd7e49bf2a24fa1905a45e83380056a7368 (patch)
tree52f4552b5cb90717e8caf3e674f0cfaf245ec26f /src/components/Footer/Footer.tsx
parentaec575c3b5797069e4964cfafa26e3de3b92f99e (diff)
chore: add footer nav
Diffstat (limited to 'src/components/Footer/Footer.tsx')
-rw-r--r--src/components/Footer/Footer.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx
index d92fb72..12d86ce 100644
--- a/src/components/Footer/Footer.tsx
+++ b/src/components/Footer/Footer.tsx
@@ -1,9 +1,12 @@
import Copyright from '@components/Copyright/Copyright';
+import FooterNav from '@components/FooterNav/FooterNav';
+import styles from './Footer.module.scss';
const Footer = () => {
return (
- <footer>
+ <footer className={styles.wrapper}>
<Copyright />
+ <FooterNav />
</footer>
);
};