diff --git a/src/commons/footer.jsx b/src/commons/footer.jsx
index 0070e0f..97af81e 100644
--- a/src/commons/footer.jsx
+++ b/src/commons/footer.jsx
@@ -1,3 +1,49 @@
export default function Footer() {
- return ;
+ return (
+
+ );
}
diff --git a/src/sass/_footer.scss b/src/sass/_footer.scss
index 50a29c9..12b838c 100644
--- a/src/sass/_footer.scss
+++ b/src/sass/_footer.scss
@@ -1,4 +1,48 @@
.footer {
background-color: $color-secondary;
grid-column: full-start / full-end;
+
+ padding: 8rem;
+}
+
+.nav {
+ list-style: none;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
+ gap: 2rem;
+ align-items: center;
+
+ &__link:link,
+ &__link:visited {
+ font-size: 1.4rem;
+ color: #fff;
+ text-decoration: none;
+ font-family: $font-display;
+ text-transform: uppercase;
+ text-align: center;
+ padding: 1.5rem;
+ display: block;
+ transition: all 0.2s;
+ }
+
+ &__link:hover,
+ &__link:active {
+ background-color: rgba(#fff, 0.05);
+ transform: translateY(-3px);
+ }
+}
+
+.copyright {
+ font-size: 1.4rem;
+ color: $color-grey-light-2;
+ margin-top: 6rem;
+ text-align: center;
+
+ &__link {
+ color: #fff;
+
+ &:hover {
+ color: $color-grey-light-2;
+ }
+ }
}