Skip to content

Commit 018390b

Browse files
authored
Merge pull request #6 from bineetNaidu/issue#3
updated footer
2 parents 1f18ffc + 57418ba commit 018390b

File tree

4 files changed

+47
-21
lines changed

4 files changed

+47
-21
lines changed

client/public/index.html

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@
2525
-->
2626
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
2727
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
28+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
29+
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
30+
crossorigin="anonymous" />
31+
2832

2933
<title>Gamergram</title>
3034
</head>

client/src/Components/Screens/Footer.js

+19-21
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,27 @@
11
import React from 'react'
2+
import "../../Styles/Footer.css"
23

34
function Footer() {
45
return (
5-
<footer className="page-footer footer">
6-
<div className="container">
7-
<div className="row">
8-
<div className="col l6 s12">
9-
<h5 className="gamergram">Gamergram</h5>
10-
<p>A web application to publish your thoughts, connect with friends, share pictures, comment, like and much more!</p>
11-
<p>Developed by Meghal Bisht using the MERN stack.</p>
12-
</div>
13-
<div className="col l4 offset-l2 s12">
14-
<h5>Connect with me</h5>
15-
<ul>
16-
<li><a rel="noopener noreferrer" target="_blank" href="https://www.linkedin.com/in/meghal-bisht-777451177/">LinkedIn</a></li>
17-
<li><a rel="noopener noreferrer" target="_blank" href="https://github.com/MeghalBisht">GitHub</a></li>
18-
<li><a rel="noopener noreferrer" target="_blank" href="https://resume-meghal.herokuapp.com/">Website</a></li>
19-
</ul>
20-
</div>
21-
</div>
22-
</div>
23-
<div className="footer-copyright">
24-
<div className="container">
25-
© 2020 <span>Gamergram</span>
6+
<footer className="footer">
7+
<div className="container text-center">
8+
<img src="../../gamergram.ico" className="d-block mb-4 mx-auto" width="100px " />
9+
10+
<p className="text-secondary col md 9 mx-auto">A web application to publish your thoughts, connect with friends, share pictures, comment, like and much more!</p>
11+
<p className="text-secondary col md 9 mx-auto">Developed by Meghal Bisht using the MERN stack.</p>
12+
<hr className="my-5" />
13+
<div className="mb-3">
14+
<a rel="noopener noreferrer" target="_blank" className="ctx__icons" href="https://www.linkedin.com/in/meghal-bisht-777451177/">
15+
<i className="fab fa-linkedin"></i>
16+
</a>
17+
<a rel="noopener noreferrer" target="_blank" className="ctx__icons" href="https://github.com/MeghalBisht">
18+
<i className="fab fa-github"></i>
19+
</a>
20+
<a rel="noopener noreferrer" target="_blank" className="ctx__icons" href="https://resume-meghal.herokuapp.com/">
21+
<i className="fas fa-code"></i>
22+
</a>
2623
</div>
24+
<p className="text-secondary">Copyright 2020. All rights reserved!</p>
2725
</div>
2826
</footer>
2927
)

client/src/Styles/Footer.css

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
.footer {
2+
padding: 2rem 0;
3+
background-color: #d6efc7;
4+
}
5+
6+
.text-center {
7+
text-align: center;
8+
}
9+
10+
.footer .ctx__icons {
11+
height: 50px;
12+
width: 50px;
13+
border-radius: 50%;
14+
margin: 15px 8px;
15+
}
16+
17+
.footer .ctx__icons > .fab,
18+
.footer .ctx__icons > .fas {
19+
font-size: 30px;
20+
}
21+
22+
.my-5 {
23+
margin: 2rem 0;
24+
}

client/src/gamergram.ico

300 KB
Binary file not shown.

0 commit comments

Comments
 (0)