Skip to content

Commit e9cdc8e

Browse files
committed
Final commit update modals
1 parent ebb3f36 commit e9cdc8e

File tree

7 files changed

+17
-10
lines changed

7 files changed

+17
-10
lines changed

src/config/prod.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
module.exports = {
22
googleClientID: process.env.GOOGLE_CLIENT_ID
3-
};
3+
};
4+

src/core/Footer.js

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
import React from "react";
22
import { MDBCol, MDBContainer, MDBRow, MDBFooter } from "mdbreact";
3+
import fav from '../images/favicon.ico';
34

45
const FooterPage = () => {
56
return (
67
<MDBFooter color="blue" className="font-small pt-4 mt-4">
78
<MDBContainer fluid className="text-center text-md-left">
89
<MDBRow>
910
<MDBCol md="6">
10-
<h5 className="title">Shaun Collins Ajax-React Social Network</h5>
11+
<h5 className="title">Shaun Collins Ajax-React Social Network
12+
&nbsp;
13+
<img src={fav} alt="favicon" />
14+
</h5>
1115
<p>
1216
I have been designing and developng websites for the last three years.
1317
<br />If you would like to employ my services message me!
@@ -16,18 +20,19 @@ const FooterPage = () => {
1620
</MDBCol>
1721
<MDBCol md="6">
1822
<h5 className="title">My Social Links</h5>
23+
<p>Feel free to reach out!</p>
1924
<ul>
2025
<li className="list-unstyled">
21-
<a href="https://www.facebook.com/shaun.collins.5623">Facebook &nbsp;<i class="fab fa-facebook-square"></i></a>
26+
<a href="https://www.facebook.com/shaun.collins.5623">Facebook &nbsp;<i className="fab fa-facebook-square"></i></a>
2227
</li>
2328
<li className="list-unstyled">
24-
<a href="https://twitter.com/ajax27Co">Twitter &nbsp;<i class="fab fa-twitter-square"></i></a>
29+
<a href="https://twitter.com/ajax27Co">Twitter &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<i className="fab fa-twitter-square"></i></a>
2530
</li>
2631
<li className="list-unstyled">
27-
<a href="https://github.com/ajax27">Github &nbsp;<i class="fab fa-github-square"></i></a>
32+
<a href="https://github.com/ajax27">Github &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<i className="fab fa-github-square"></i></a>
2833
</li>
2934
<li className="list-unstyled">
30-
<a href="https://www.linkedin.com/in/shaun-collins-ajax27/">LinkedIn &nbsp;<i class="fab fa-linkedin"></i></a>
35+
<a href="https://www.linkedin.com/in/shaun-collins-ajax27/">LinkedIn &nbsp;&nbsp;&nbsp;<i className="fab fa-linkedin"></i></a>
3136
</li>
3237
</ul>
3338
</MDBCol>

src/core/TermsModal.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ class TermsModal extends Component {
288288

289289
<h2>Who we are</h2>
290290
<h5 style={{ color: '#dd3838' }}> Scroll Right-Side</h5>
291-
<p>Our website address is: https://blogger.ajax27.com.</p>
291+
<p>Our website address is: https://socialreaction.ajax27.com.</p>
292292

293293
<h2>What personal data we collect and why we collect it</h2>
294294

src/images/favicon.ico

5.3 KB
Binary file not shown.

src/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import App from './App';
44
import "@fortawesome/fontawesome-free/css/all.min.css";
55
import "bootstrap-css-only/css/bootstrap.min.css";
66
import "mdbreact/dist/css/mdb.css";
7+
import './images/favicon.ico';
78
import './App.css';
89

910
ReactDOM.render(<App />, document.getElementById('root'));

src/post/Posts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Posts extends Component {
1717
if (data && data.length && data.error) {
1818
console.log(data.error);
1919
} else {
20-
this.setState({ posts: data || [] });
20+
this.setState({ posts: data || [] })
2121
}
2222
});
2323
};

src/post/apiPost.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ export const list = page => {
2929
method: "GET"
3030
})
3131
.then(response => {
32-
return response.json();
32+
return response.json()
3333
})
34-
.catch(err => console.log(err));
34+
.catch(err => console.log(err))
3535
};
3636

3737
export const singlePost = postId => {

0 commit comments

Comments
 (0)