aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Footer
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Footer')
-rw-r--r--src/components/Footer/Footer.module.scss8
-rw-r--r--src/components/Footer/Footer.tsx5
2 files changed, 12 insertions, 1 deletions
diff --git a/src/components/Footer/Footer.module.scss b/src/components/Footer/Footer.module.scss
new file mode 100644
index 0000000..496044a
--- /dev/null
+++ b/src/components/Footer/Footer.module.scss
@@ -0,0 +1,8 @@
+.wrapper {
+ display: flex;
+ flex-flow: row wrap;
+ place-items: center;
+ place-content: center;
+ gap: var(--spacing-xs);
+ padding: var(--spacing-md) 0;
+}
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>
);
};