Skip to content

Commit 7b9020a

Browse files
committed
cleaned up space and notes in footer component
1 parent 01a1758 commit 7b9020a

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

components/layout/Footer.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ export default function Footer() {
1010
return (
1111
<footer className={footerStyles.footer}>
1212
<NewsletterSubscribe />
13-
1413
<Container className={footerStyles.footer__inner}>
1514
<Link href='/'>
1615
<a className={footerStyles.footer__logo} title='Go to the Homepage'>
@@ -22,10 +21,7 @@ export default function Footer() {
2221
/>
2322
</a>
2423
</Link>
25-
2624
<div className={footerStyles.footer__navSocialsDiv}>
27-
{/* nav & socials */}
28-
2925
<nav className={footerStyles.footer__nav} aria-label='Main'>
3026
<ul className={footerStyles.footer__navList}>
3127
{linksNav.map(link => (
@@ -37,13 +33,12 @@ export default function Footer() {
3733
))}
3834
</ul>
3935
</nav>
40-
4136
<div className={footerStyles.footer__socialIcons}>
4237
<ul className={footerStyles.footer__socialList}>
4338
{linksSocial.map(link => (
4439
<li className={footerStyles.footer__socialItem} key={link.id}>
4540
<Link href={link.href}>
46-
<a title={link.text} target="_blank">
41+
<a title={link.text} target='_blank'>
4742
<Image
4843
href={link.href}
4944
src={link.src}
@@ -58,7 +53,6 @@ export default function Footer() {
5853
</div>
5954
</div>
6055
</Container>
61-
6256
<Container>
6357
<p className={footerStyles.footer__copyright}>
6458
© Web Dev Path {new Date().getFullYear()}. All rights reserved.

styles/Footer.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@
7474
&__socialIcons {
7575

7676
@include tablet {
77-
77+
7878
}
7979

8080
@include large-desktop {
81-
81+
8282
}
8383
}
8484

0 commit comments

Comments
 (0)