Skip to content

Commit 46043bb

Browse files
v22.7.1
1 parent 4a474db commit 46043bb

File tree

6 files changed

+10
-1
lines changed

6 files changed

+10
-1
lines changed

src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function App() {
4848
<Route exact path='/blog' component={Blog} />
4949
<Route exact path='/links' component={Links} />
5050
</Switch>
51-
<Footer version="v22.7.0"/>
51+
<Footer version="v22.7.1"/>
5252
</div>
5353
);
5454
}

src/components/Footer/Footer.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,17 @@ import React from 'react';
22
import './Footer.css';
33
import FB from '../../media/fb.png';
44
import Github from '../../media/github.png';
5+
import Linkedin from '../../media/linkedin.png';
6+
import Youtube from '../../media/youtube.png';
57

68
export default class Footer extends React.Component {
79
render() {
810
return (
911
<footer className="mt-auto bg-light pb-1 text-left border-top">
1012
<a href="https://github.com/swe-course" target="_blank" without rel="noopener noreferrer" className="pl-2 float-left"><img src={Github} class="Footer__logo img-fluid" alt=""/></a>
1113
<a href="https://www.facebook.com/swecourse" target="_blank" without rel="noopener noreferrer" className="pl-2 float-left"><img src={FB} class="Footer__logo img-fluid" alt=""/></a>
14+
<a href="https://www.linkedin.com/company/software-engineering-course" target="_blank" without rel="noopener noreferrer" className="pl-2 float-left"><img src={Linkedin} class="Footer__logo img-fluid" alt=""/></a>
15+
<a href="https://www.youtube.com/channel/UCzFXQi0c1cb6Ne4DNvRdvJQ" target="_blank" without rel="noopener noreferrer" className="pl-2 float-left"><img src={Youtube} class="Footer__logo img-fluid" alt=""/></a>
1216
<small className="text-secondary pr-2 mt-1 float-right">{this.props.version}</small>
1317
</footer>
1418
);

src/media/citddo.png

467 KB
Loading

src/media/linkedin.png

9 KB
Loading

src/media/youtube.png

63.8 KB
Loading

src/pages/Links/Links.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ export default class Calendar extends BasePage {
6161
url: 'https://martinfowler.com/bliki/PolyglotPersistence.html',
6262
tags: ['reusability']
6363
},
64+
{
65+
title: 'Design Patterns',
66+
url: 'https://refactoring.guru/design-patterns/',
67+
tags: ['patterns']
68+
},
6469
{
6570
title: 'Software Architecture - The Difference Between Architecture and Design',
6671
url: 'https://codeburst.io/software-architecture-the-difference-between-architecture-and-design-7936abdd5830',

0 commit comments

Comments
 (0)