Skip to content

Commit

Permalink
Merge pull request #81 from sweta-singh28/copyright
Browse files Browse the repository at this point in the history
added a copyright message.
  • Loading branch information
AbhiDiva96 authored Jun 2, 2024
2 parents c67605a + 08b0b72 commit f4d5f42
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 14 deletions.
1 change: 1 addition & 0 deletions src/pages/footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@

.founder{
justify-content: center;
text-align: center;
}
.linkedin{
display: flex;
Expand Down
34 changes: 20 additions & 14 deletions src/pages/footer.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,33 @@
import React from 'react'
import './footer.css';
import React from "react";
import "./footer.css";

import GitHubIcon from '@mui/icons-material/GitHub';
import LinkedInIcon from '@mui/icons-material/LinkedIn';
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="footer">
<div className="fram">

{/* <div className="github">
{/* <div className="github">
<a href="https://github.com/AbhiDiva96/75per ">
<GitHubIcon/>
</a>
</div> */}

<div className="founder">
<h4>made by <a href="https://www.linkedin.com/in/abhishek-kumar-062231198/">@AbhiDiva </a> </h4>
</div>


<div className="founder">
<h4>
made by{" "}
<a href="https://www.linkedin.com/in/abhishek-kumar-062231198/">
@AbhiDiva{" "}
</a>{" "}
</h4>
<h4>
Copyright &copy; {currentYear} 75percent - All rights reserved.{" "}
</h4>
</div>
</div>
</div>
)
);
}

export default footer
export default footer;

0 comments on commit f4d5f42

Please sign in to comment.