Skip to content

Commit 39535e5

Browse files
Gopal SainiGopal Saini
authored andcommitted
Updated certificates
1 parent 3df9146 commit 39535e5

File tree

11 files changed

+9771
-14281
lines changed

11 files changed

+9771
-14281
lines changed

package-lock.json

Lines changed: 0 additions & 14260 deletions
This file was deleted.

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@
77
"url": "https://github.com/gsaini/gsaini.github.io.git"
88
},
99
"dependencies": {
10-
"@testing-library/jest-dom": "^4.2.4",
11-
"@testing-library/react": "^9.5.0",
12-
"@testing-library/user-event": "^7.1.2",
13-
"@types/jest": "^24.0.0",
14-
"@types/node": "^12.19.9",
15-
"@types/react": "^16.14.2",
16-
"@types/react-dom": "^16.9.10",
17-
"node-sass": "^4.14.1",
18-
"react": "^16.14.0",
19-
"react-dom": "^16.14.0",
20-
"react-helmet": "^5.2.1",
21-
"react-scripts": "^3.4.4",
22-
"typescript": "~3.7.2"
10+
"@testing-library/jest-dom": "^5.16.1",
11+
"@testing-library/react": "^12.1.2",
12+
"@testing-library/user-event": "^13.5.0",
13+
"@types/jest": "^27.4.0",
14+
"@types/node": "^17.0.9",
15+
"@types/react": "^17.0.38",
16+
"@types/react-dom": "^17.0.11",
17+
"node-sass": "^7.0.1",
18+
"react": "^17.0.2",
19+
"react-dom": "^17.0.2",
20+
"react-helmet": "^6.1.0",
21+
"react-scripts": "^5.0.0",
22+
"typescript": "~4.5.4"
2323
},
2424
"scripts": {
2525
"start": "react-scripts start",
@@ -45,7 +45,7 @@
4545
]
4646
},
4747
"devDependencies": {
48-
"gh-pages": "^2.2.0",
49-
"prettier": "1.19.1"
48+
"gh-pages": "^3.2.3",
49+
"prettier": "2.5.1"
5050
}
5151
}

src/App.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import React from 'react';
22
import { Helmet } from 'react-helmet';
3-
import Timeline from './Components/Timeline';
4-
import Profile from './Components/Profile';
5-
import Skills from './Components/Skills';
6-
import Education from './Components/Education';
7-
import Footer from './Components/Footer';
3+
import { Certificates, Education, Footer, Profile, Skills, Timeline } from './Components';
84
import PROFILE from './data/profile.json'
95
import "./styles/app.scss";
106

@@ -28,6 +24,7 @@ const App = () => {
2824
}
2925
<Skills skills={skills} />
3026
<Education {...{ educations: educations }} />
27+
<Certificates/>
3128
<Footer />
3229
</div>
3330

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import * as React from 'react';
2+
import credlyDashboard from './credlyDashboard.png';
3+
import './_Certificates.scss';
4+
5+
interface IProps {
6+
}
7+
8+
export const Certificates: React.FC<IProps> = () => {
9+
return (
10+
<section className="tile tile-certificates">
11+
<h3 className="tile-certificates-title">Certificates</h3>
12+
<a href='https://www.credly.com/users/gsaini/badges' target="_blank" rel='noreferrer'>
13+
<img src={credlyDashboard} width="100%" alt='My Certificates'/>
14+
</a>
15+
</section>
16+
);
17+
};
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
@import "./../../styles/variables";
2+
@import "./../../styles/mixins";
3+
4+
.tile {
5+
&-certificates {
6+
&-title {
7+
background-color: #2e2e2e;
8+
border-radius: 5px;
9+
text-transform: uppercase;
10+
padding: 10px;
11+
}
12+
13+
h3 {
14+
text-align: center;
15+
margin: 0 0 10px 0;
16+
}
17+
}
18+
}
175 KB
Loading
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { Certificates } from "./Certificates";
2+
3+
export default Certificates;

src/Components/Profile/Profile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const Profile: React.FC<IProps> = ({ name, designation, company, aboutMe,
2525
<div className="site-links">
2626
<a rel="noopener noreferrer" href="https://github.com/gsaini" target="_blank"><i className="fab fa-github"></i></a>
2727
<a rel="noopener noreferrer" href="https://twitter.com/saini_gopal" target="_blank"><i className="fab fa-twitter-square"></i></a>
28-
<a rel="noopener noreferrer" href="https://www.linkedin.com/in/gsaini01/" target="_blank"><i className="fab fa-linkedin"></i></a>
28+
<a rel="noopener noreferrer" href="https://www.linkedin.com/in/gopal-saini" target="_blank"><i className="fab fa-linkedin"></i></a>
2929
<a rel="noopener noreferrer" href="https://www.facebook.com/gops.saini" target="_blank"><i className="fab fa-facebook"></i></a>
3030
<a rel="noopener noreferrer" href="https://www.instagram.com/gsaini__/" target="_blank"><i className="fab fa-instagram"></i></a>
3131
</div>

src/Components/index.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import Certificates from "./Certificates";
2+
import Education from "./Education";
3+
import Footer from "./Footer";
4+
import Profile from "./Profile";
5+
import Skills from "./Skills";
6+
import Timeline from "./Timeline";
7+
8+
export {
9+
Certificates,
10+
Education,
11+
Footer,
12+
Profile,
13+
Skills,
14+
Timeline
15+
}

src/data/profile.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@
142142
}
143143
},
144144
"skills": [
145+
"Amazon Web Services (aws)",
145146
"HTML5",
146147
"CSS3",
147148
"Javascript",

0 commit comments

Comments
 (0)