Skip to content

Commit

Permalink
added footer (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
abdullahmorrison committed Aug 29, 2023
1 parent 1a4a187 commit 4aaba02
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
37 changes: 37 additions & 0 deletions src/app/page.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,43 @@
}
}

.footer{
color: black;
background-color: white;
padding: 100px;

.logo{
margin-bottom: 50px;
&::after{
content: '';
display: inline-block;
width: 8px;
height: 8px;
background-color: red;
border-radius: 50%;
margin-left: 5px;
}
}
ul {
display: flex;
gap: 20px;
margin-bottom: 20px;

li{
list-style-type: none;
margin-bottom: 10px;

a{
text-decoration: underline;
color: $title-accent
}
}
}
p{
color: $text-secondary;
}
}

@keyframes slideUp {
0% { transform: translateY(100%); }
50% { transform: translateY(100%); }
Expand Down
10 changes: 10 additions & 0 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,16 @@ export default function Home() {
</ul>
</div>
</section>

<footer className={styles.footer}>
<h4 className={styles.logo}>My Portfolio</h4>
<ul>
<li><a href="https://linkedin.com/in/abdullah-morrison" target="_blank">LinkedIn</a></li>
<li><a href="https://github.com/abdullahmorrion" target="_blank">GitHub</a></li>
<li><a href="https://1drv.ms/w/s!AqCqUgZCz_SygvU10zYLa_qjeCIFJw?e=ZGIhZ1" target='_blank'>My Resume</a></li>
</ul>
<p>This website was made with NextJS.</p>
</footer>
</div>
)
}

0 comments on commit 4aaba02

Please sign in to comment.