-
Notifications
You must be signed in to change notification settings - Fork 69
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 #78 from Hemashree21/main
Updated Footer
- Loading branch information
Showing
2 changed files
with
113 additions
and
111 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
import React from "react"; | ||
import "./footer.css"; | ||
import GitHubIcon from '@mui/icons-material/GitHub'; | ||
import LinkedInIcon from '@mui/icons-material/LinkedIn'; | ||
import './footer.css'; | ||
|
||
const Footer = () => { | ||
|
||
import GitHubIcon from "@mui/icons-material/GitHub"; | ||
import LinkedInIcon from "@mui/icons-material/LinkedIn"; | ||
function footer() { | ||
const currentYear = new Date().getFullYear(); | ||
return ( | ||
<div className="footer"> | ||
<div className="fram"> | ||
{/* <div className="github"> | ||
<a href="https://github.com/AbhiDiva96/75per "> | ||
<GitHubIcon/> | ||
</a> | ||
</div> */} | ||
|
||
<div className="founder"> | ||
<h4> | ||
made by{" "} | ||
<div className="footer-content"> | ||
<div className="footer-flex-container"> | ||
<div className="footer-item"> | ||
<span className="footer-text"> | ||
75% | ||
</span> | ||
</div> | ||
<div className="footer-item footer-copyright"> | ||
Copyright @ 75% | ||
</div> | ||
<div className="footer-item footer-icons"> | ||
<a href="https://github.com/AbhiDiva96/75per"> | ||
<GitHubIcon className="icon"/> | ||
</a> | ||
<a href="https://www.linkedin.com/in/abhishek-kumar-062231198/"> | ||
@AbhiDiva{" "} | ||
</a>{" "} | ||
</h4> | ||
<h4> | ||
Copyright © {currentYear} 75percent - All rights reserved.{" "} | ||
</h4> | ||
<LinkedInIcon className="icon"/> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default footer; | ||
export default Footer; |