-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #165 from YadlaMani/dev
Footer section Added
- Loading branch information
Showing
4 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
footer { | ||
position: fixed; | ||
background-color: black; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
padding: 8px; | ||
text-align: center; | ||
width: 100%; | ||
|
||
border-top: 2px solid white; | ||
} | ||
.social-section { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-around; | ||
} | ||
.social ul li { | ||
display: inline; | ||
padding-left: 30px; | ||
} | ||
.shoutout { | ||
padding-right: 5px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import "./Footer.css"; | ||
const Footer = () => { | ||
const year = new Date().getFullYear(); | ||
|
||
return ( | ||
<footer> | ||
<div class="social-section"> | ||
<div> | ||
<div> | ||
<b>Made with ♡ by Avdhesh </b> | ||
</div> | ||
</div> | ||
<div class="social"> | ||
<ul> | ||
<li> | ||
<a href="https://www.linkedin.com/in/avdhesh-varshney-5314a4233/"> | ||
<i class="fa-brands fa-linkedin fa-lg"></i> | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://twitter.com/__Avdhesh__"> | ||
<i class="fa-brands fa-square-x-twitter fa-lg"></i> | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://github.com/Avdhesh-Varshney"> | ||
<i class="fa-brands fa-square-github fa-lg"></i> | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
<div>{`Copyright © Web Master Log ${year}`}</div> | ||
</footer> | ||
); | ||
}; | ||
|
||
export default Footer; |