├── .gitignore
├── README.md
├── package.json
├── public
├── favicon.ico
├── index.html
├── logo192.png
├── logo512.png
├── manifest.json
└── robots.txt
├── src
├── App.css
├── App.js
├── assets
│ ├── images
│ │ ├── bg-f2f2f2.jpg
│ │ ├── conversation.png
│ │ ├── me-left.png
│ │ ├── me-right.png
│ │ ├── testimonial-pic.jpg
│ │ ├── testimonials-01.jpg
│ │ └── testimonials-02.jpg
│ ├── projects
│ │ └── project-001.PNG
│ └── social-icons
│ │ ├── facebook.png
│ │ ├── index.js
│ │ ├── instagram.png
│ │ ├── linkedin.png
│ │ └── youtube.png
├── components
│ ├── Expertise
│ │ ├── index.js
│ │ └── style.css
│ ├── Footer
│ │ ├── index.js
│ │ └── style.css
│ ├── Hero
│ │ ├── index.js
│ │ └── style.css
│ ├── LatestProjects
│ │ ├── index.js
│ │ └── style.css
│ ├── Qualification
│ │ ├── index.js
│ │ └── style.css
│ ├── Specializing
│ │ ├── index.js
│ │ └── style.css
│ ├── Testimonials
│ │ ├── index.js
│ │ └── style.css
│ └── UI
│ │ ├── Button.js
│ │ ├── Card
│ │ ├── index.js
│ │ └── style.css
│ │ ├── MediumHeading.js
│ │ ├── Skill
│ │ ├── index.js
│ │ └── style.css
│ │ ├── SmallHeading.js
│ │ ├── SocialConnect
│ │ ├── index.js
│ │ └── style.css
│ │ └── Tile.js
├── index.css
├── index.js
├── reportWebVitals.js
├── setupTests.js
└── style.js
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Getting Started with Create React App
2 |
3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4 |
5 | ## Available Scripts
6 |
7 | In the project directory, you can run:
8 |
9 | ### `yarn start`
10 |
11 | Runs the app in the development mode.\
12 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13 |
14 | The page will reload if you make edits.\
15 | You will also see any lint errors in the console.
16 |
17 | ### `yarn test`
18 |
19 | Launches the test runner in the interactive watch mode.\
20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21 |
22 | ### `yarn build`
23 |
24 | Builds the app for production to the `build` folder.\
25 | It correctly bundles React in production mode and optimizes the build for the best performance.
26 |
27 | The build is minified and the filenames include the hashes.\
28 | Your app is ready to be deployed!
29 |
30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31 |
32 | ### `yarn eject`
33 |
34 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35 |
36 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37 |
38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39 |
40 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41 |
42 | ## Learn More
43 |
44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45 |
46 | To learn React, check out the [React documentation](https://reactjs.org/).
47 |
48 | ### Code Splitting
49 |
50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
51 |
52 | ### Analyzing the Bundle Size
53 |
54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
55 |
56 | ### Making a Progressive Web App
57 |
58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
59 |
60 | ### Advanced Configuration
61 |
62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
63 |
64 | ### Deployment
65 |
66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
67 |
68 | ### `yarn build` fails to minify
69 |
70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
71 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "portfolio-001",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "@testing-library/jest-dom": "^5.11.4",
7 | "@testing-library/react": "^11.1.0",
8 | "@testing-library/user-event": "^12.1.10",
9 | "aos": "^2.3.4",
10 | "react": "^17.0.1",
11 | "react-circular-progressbar": "^2.0.3",
12 | "react-dom": "^17.0.1",
13 | "react-scripts": "4.0.2",
14 | "web-vitals": "^1.0.1"
15 | },
16 | "scripts": {
17 | "start": "react-scripts start",
18 | "build": "react-scripts build",
19 | "test": "react-scripts test",
20 | "eject": "react-scripts eject"
21 | },
22 | "eslintConfig": {
23 | "extends": [
24 | "react-app",
25 | "react-app/jest"
26 | ]
27 | },
28 | "browserslist": {
29 | "production": [
30 | ">0.2%",
31 | "not dead",
32 | "not op_mini all"
33 | ],
34 | "development": [
35 | "last 1 chrome version",
36 | "last 1 firefox version",
37 | "last 1 safari version"
38 | ]
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/public/favicon.ico
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
12 |
13 |
17 |
18 |
27 | Rizwan Khan
28 |
29 |
30 |
31 |
32 | You need to enable JavaScript to run this app.
33 |
34 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/public/logo192.png
--------------------------------------------------------------------------------
/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/public/logo512.png
--------------------------------------------------------------------------------
/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | },
10 | {
11 | "src": "logo192.png",
12 | "type": "image/png",
13 | "sizes": "192x192"
14 | },
15 | {
16 | "src": "logo512.png",
17 | "type": "image/png",
18 | "sizes": "512x512"
19 | }
20 | ],
21 | "start_url": ".",
22 | "display": "standalone",
23 | "theme_color": "#000000",
24 | "background_color": "#ffffff"
25 | }
26 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/src/App.css:
--------------------------------------------------------------------------------
1 | .App {
2 | text-align: center;
3 | }
4 |
5 | .App-logo {
6 | height: 40vmin;
7 | pointer-events: none;
8 | }
9 |
10 | @media (prefers-reduced-motion: no-preference) {
11 | .App-logo {
12 | animation: App-logo-spin infinite 20s linear;
13 | }
14 | }
15 |
16 | .App-header {
17 | background-color: #282c34;
18 | min-height: 100vh;
19 | display: flex;
20 | flex-direction: column;
21 | align-items: center;
22 | justify-content: center;
23 | font-size: calc(10px + 2vmin);
24 | color: white;
25 | }
26 |
27 | .App-link {
28 | color: #61dafb;
29 | }
30 |
31 | @keyframes App-logo-spin {
32 | from {
33 | transform: rotate(0deg);
34 | }
35 | to {
36 | transform: rotate(360deg);
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/src/App.js:
--------------------------------------------------------------------------------
1 | import React, { useEffect } from "react";
2 | import Hero from "./components/Hero";
3 | import Specializing from "./components/Specializing";
4 | import Expertise from "./components/Expertise";
5 | import LatestProjects from "./components/LatestProjects";
6 | import Qualification from "./components/Qualification";
7 | import Testimonials from "./components/Testimonials";
8 | import Footer from "./components/Footer";
9 | import AOS from "aos";
10 | import "aos/dist/aos.css";
11 |
12 | /**
13 | * @author
14 | * @function App
15 | **/
16 |
17 | const App = (props) => {
18 | useEffect(() => {
19 | AOS.init({
20 | duration: 1000,
21 | });
22 | }, []);
23 |
24 | return (
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 | );
35 | };
36 |
37 | export default App;
38 |
--------------------------------------------------------------------------------
/src/assets/images/bg-f2f2f2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/src/assets/images/bg-f2f2f2.jpg
--------------------------------------------------------------------------------
/src/assets/images/conversation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/src/assets/images/conversation.png
--------------------------------------------------------------------------------
/src/assets/images/me-left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/src/assets/images/me-left.png
--------------------------------------------------------------------------------
/src/assets/images/me-right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/src/assets/images/me-right.png
--------------------------------------------------------------------------------
/src/assets/images/testimonial-pic.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/src/assets/images/testimonial-pic.jpg
--------------------------------------------------------------------------------
/src/assets/images/testimonials-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/src/assets/images/testimonials-01.jpg
--------------------------------------------------------------------------------
/src/assets/images/testimonials-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/src/assets/images/testimonials-02.jpg
--------------------------------------------------------------------------------
/src/assets/projects/project-001.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/src/assets/projects/project-001.PNG
--------------------------------------------------------------------------------
/src/assets/social-icons/facebook.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/src/assets/social-icons/facebook.png
--------------------------------------------------------------------------------
/src/assets/social-icons/index.js:
--------------------------------------------------------------------------------
1 | export default {
2 | facebook: require(`./facebook.png`).default,
3 | instagram: require(`./instagram.png`).default,
4 | linkedin: require(`./linkedin.png`).default,
5 | youtube: require(`./youtube.png`).default,
6 | };
7 |
--------------------------------------------------------------------------------
/src/assets/social-icons/instagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/src/assets/social-icons/instagram.png
--------------------------------------------------------------------------------
/src/assets/social-icons/linkedin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/src/assets/social-icons/linkedin.png
--------------------------------------------------------------------------------
/src/assets/social-icons/youtube.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/src/assets/social-icons/youtube.png
--------------------------------------------------------------------------------
/src/components/Expertise/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import SmallHeading from "../UI/SmallHeading";
3 | import MediumHeading from "../UI/MediumHeading";
4 | import Card from "../UI/Card";
5 | import { CircularProgressbar, buildStyles } from "react-circular-progressbar";
6 | import { colors } from "../../style";
7 | import me from "../../assets/images/me-left.png";
8 | import SocialConnect from "../UI/SocialConnect";
9 | import "./style.css";
10 |
11 | /**
12 | * @author
13 | * @function Expertise
14 | **/
15 |
16 | const percentage = 70;
17 |
18 | const Expertise = (props) => {
19 | return (
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
39 |
40 |
41 |
49 |
50 |
Development
51 |
52 |
53 | JavaScript is one of the greatest programming language.
54 |
55 |
56 |
57 | );
58 | };
59 |
60 | export default Expertise;
61 |
--------------------------------------------------------------------------------
/src/components/Expertise/style.css:
--------------------------------------------------------------------------------
1 | .rightImgMeContainer{
2 | width: 276px;
3 | height: 445px;
4 | position: absolute;
5 | top: 0;
6 | }
7 | @media screen and (max-width: 768px){
8 | .rightImgMeContainer{
9 | display: none;
10 | }
11 | }
--------------------------------------------------------------------------------
/src/components/Footer/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import SocialConnect from "../UI/SocialConnect";
3 | import conversation from "../../assets/images/conversation.png";
4 | import "./style.css";
5 |
6 | /**
7 | * @author
8 | * @function Footer
9 | **/
10 |
11 | const Footer = (props) => {
12 | return (
13 |
14 |
18 |
19 |
20 |
21 |
30 |
31 |
32 |
33 |
34 |
35 | );
36 | };
37 |
38 | export default Footer;
39 |
--------------------------------------------------------------------------------
/src/components/Footer/style.css:
--------------------------------------------------------------------------------
1 | .conversationContainer{
2 | width: 50px;
3 | height:50px;
4 | border-radius: 50%;
5 | box-shadow: 0 0 20px 0 green;
6 | display: flex;
7 | justify-content: center;
8 | align-items: center;
9 | }
10 | .conversationContainer img{
11 | width: 25px;
12 | height: 25px;
13 | }
14 | .footerMenus a{
15 | display: inline-block;
16 | margin: 0 10px;
17 | text-transform: uppercase;
18 | color: #777;
19 | font-size: 14px;
20 | font-weight: 500;
21 | }
--------------------------------------------------------------------------------
/src/components/Hero/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import me from "../../assets/images/me-right.png";
3 | import Button from "../UI/Button";
4 | import "./style.css";
5 |
6 | /**
7 | * @author
8 | * @function Hero
9 | **/
10 |
11 | const Hero = (props) => {
12 | return (
13 |
14 |
15 |
16 |
17 | Hello, I am Rizwan Khan
18 |
19 |
Software Developer
20 |
FullStack Developer using JS.
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 | );
38 | };
39 |
40 | export default Hero;
41 |
--------------------------------------------------------------------------------
/src/components/Hero/style.css:
--------------------------------------------------------------------------------
1 | .meRightImgContainer{
2 | width: 276px;
3 | height: 445px;
4 | overflow: hidden;
5 | }
6 | .meRightImgContainer img{
7 | max-width: 100%;
8 | max-height: 100%;
9 | object-fit: contain;
10 | }
--------------------------------------------------------------------------------
/src/components/LatestProjects/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import Card from "../UI/Card";
3 | import SmallHeading from "../UI/SmallHeading";
4 | import MediumHeading from "../UI/MediumHeading";
5 | import Button from "../UI/Button";
6 | import latestProject from "../../assets/projects/project-001.PNG";
7 |
8 | import "./style.css";
9 |
10 | /**
11 | * @author
12 | * @function LatestProjects
13 | **/
14 |
15 | const LatestProjects = (props) => {
16 | return (
17 |
22 |
23 |
24 |
25 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 | );
39 | };
40 |
41 | export default LatestProjects;
42 |
--------------------------------------------------------------------------------
/src/components/LatestProjects/style.css:
--------------------------------------------------------------------------------
1 | .projectImgContainer{
2 | width: 500px;
3 | overflow: hidden;
4 | margin: 50px;
5 | }
6 | .projectImgContainer img{
7 | max-width: 100%;
8 | }
9 |
10 | .projectPortfolioContainer{
11 | display: flex;
12 | flex: 1;
13 | flex-direction: column;
14 | justify-content: center;
15 | }
16 |
17 | @media screen and (max-width: 768px){
18 | .projectImgContainer{
19 | width: 100%;
20 | margin: 0;
21 | padding: 50px;
22 | box-sizing: border-box;
23 | }
24 | .projectPortfolioContainer{
25 | padding-top: 50px;
26 | }
27 | }
--------------------------------------------------------------------------------
/src/components/Qualification/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import SmallHeading from "../UI/SmallHeading";
3 | import MediumHeading from "../UI/MediumHeading";
4 | import Button from "../UI/Button";
5 | import Tile from "../UI/Tile";
6 | import me from "../../assets/images/me-left.png";
7 |
8 | import "./style.css";
9 |
10 | /**
11 | * @author
12 | * @function Qualification
13 | **/
14 |
15 | const Qualification = (props) => {
16 | return (
17 |
18 |
19 |
20 |
24 |
25 |
26 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
50 |
55 |
60 |
61 |
62 |
63 | );
64 | };
65 |
66 | export default Qualification;
67 |
--------------------------------------------------------------------------------
/src/components/Qualification/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/src/components/Qualification/style.css
--------------------------------------------------------------------------------
/src/components/Specializing/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import Card from "../UI/Card";
3 | import MediumHeading from "../UI/MediumHeading";
4 | import SmallHeading from "../UI/SmallHeading";
5 | import Skill from "../UI/Skill";
6 | import { colors } from "../../style";
7 |
8 | /**
9 | * @author
10 | * @function Specializing
11 | **/
12 |
13 | const Specializing = (props) => {
14 | const skills = [
15 | {
16 | skillName: "HTML/CSS",
17 | desc: "Hands on experience in Html/Css",
18 | value: 70,
19 | textColor: colors.primaryColor,
20 | pathColor: "#f2a154",
21 | },
22 | {
23 | skillName: "JavaScript",
24 | desc: "Hands on experience in JavaScript",
25 | value: 90,
26 | textColor: colors.primaryColor,
27 | pathColor: "#f9f871",
28 | },
29 | {
30 | skillName: "ReactJS",
31 | desc: "Hands on experience in ReactJS",
32 | value: 90,
33 | textColor: colors.primaryColor,
34 | pathColor: "#00af91",
35 | },
36 | {
37 | skillName: "jQuery",
38 | desc: "Hands on experience in Html/Css",
39 | value: 60,
40 | textColor: colors.primaryColor,
41 | pathColor: "#845ec2",
42 | },
43 | {
44 | skillName: "Bootstrap",
45 | desc: "Hands on experience in Html/Css",
46 | value: 70,
47 | textColor: colors.primaryColor,
48 | pathColor: "#845ec2",
49 | },
50 | {
51 | skillName: "NodeJS",
52 | desc: "Hands on experience in Html/Css",
53 | value: 70,
54 | textColor: colors.primaryColor,
55 | pathColor: "#54e346",
56 | },
57 | {
58 | skillName: "PHP",
59 | desc: "Hands on experience in Html/Css",
60 | value: 80,
61 | textColor: colors.primaryColor,
62 | pathColor: "#111d5e",
63 | },
64 | {
65 | skillName: "Mysql",
66 | desc: "Hands on experience in Html/Css",
67 | value: 70,
68 | textColor: colors.primaryColor,
69 | pathColor: "#f88f01",
70 | },
71 | ];
72 |
73 | return (
74 |
75 |
76 |
77 |
78 |
83 | {skills.map((skill, index) => (
84 |
92 | ))}
93 |
94 |
95 |
96 | );
97 | };
98 |
99 | export default Specializing;
100 |
--------------------------------------------------------------------------------
/src/components/Specializing/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Rizwan17/sample-react-portfolio/9a5a585104e30e2bd181cb759e1e83f4742b2ad8/src/components/Specializing/style.css
--------------------------------------------------------------------------------
/src/components/Testimonials/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import SmallHeading from "../UI/SmallHeading";
3 | import MediumHeading from "../UI/MediumHeading";
4 | import Card from "../UI/Card";
5 | import testimonialsLeft from "../../assets/images/testimonials-01.jpg";
6 | import testimonialsRight from "../../assets/images/testimonials-02.jpg";
7 | import profilePicture from "../../assets/images/testimonial-pic.jpg";
8 |
9 | import "./style.css";
10 |
11 | /**
12 | * @author
13 | * @function Testimonials
14 | **/
15 |
16 | const Testimonials = (props) => {
17 | return (
18 |
19 |
20 |
21 |
22 |
23 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
Rizwan Khan
37 |
Software Developer
38 |
39 |
40 |
41 | It is a long established fact that a reader will be distracted by
42 | the readable content of a page when looking at its layout. The point
43 | of using Lorem Ipsum is that it has a more-or-less normal
44 | distribution of letters, as opposed to using 'Content here, content
45 | here', making it look like readable English. Many desktop publishing
46 | packages and web page editors now use Lorem Ipsum as their default
47 | model text
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 | Have any project in mind?{" "}
58 | Say Hello At
59 |
60 | rizwankhan.august16@gmail.com
61 |
62 |
63 | );
64 | };
65 |
66 | export default Testimonials;
67 |
--------------------------------------------------------------------------------
/src/components/Testimonials/style.css:
--------------------------------------------------------------------------------
1 | .testimonialImgContainer{
2 | width: 160px;
3 | overflow: hidden;
4 | border-radius: 2px;
5 | }
6 | .testimonialImgContainer img{
7 | max-width: 100%;
8 | object-fit: contain;
9 | }
10 | .profileImgContainer{
11 | width: 60px;
12 | height: 60px;
13 | overflow: hidden;
14 | border-radius: 50%;
15 | }
16 | .profileImgContainer img{
17 | max-width: 100%;
18 | max-height: 100%;
19 | object-fit: contain;
20 | }
21 |
22 | .myCard{
23 | width: 500px;
24 | height: 300px;
25 | padding: 30px;
26 | }
27 | .contactCard{
28 | width: 500px;
29 | padding: 30px;
30 | }
31 |
32 | @media screen and (max-width: 768px){
33 | .testimonialImgContainer{
34 | display: none;
35 | }
36 | .myCard{
37 | width: 100%;
38 | }
39 | .contactCard{
40 | width: 100%;
41 | }
42 | }
--------------------------------------------------------------------------------
/src/components/UI/Button.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { colors } from "../../style";
3 |
4 | /**
5 | * @author
6 | * @function Button
7 | **/
8 |
9 | const Button = (props) => {
10 | return (
11 |
27 | {props.label}
28 |
29 | );
30 | };
31 |
32 | export default Button;
33 |
--------------------------------------------------------------------------------
/src/components/UI/Card/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import "./style.css";
3 |
4 | /**
5 | * @author
6 | * @function Card
7 | **/
8 |
9 | const Card = ({ className = null, children, style, ...res }) => {
10 | const _class = className ? `card ${className}` : `card`;
11 | return (
12 |
13 | {children}
14 |
15 | );
16 | };
17 |
18 | export default Card;
19 |
--------------------------------------------------------------------------------
/src/components/UI/Card/style.css:
--------------------------------------------------------------------------------
1 | .card{
2 | background: #ffffff;
3 | border-radius: 2px;
4 | box-sizing: border-box;
5 | width: 100%;
6 | }
--------------------------------------------------------------------------------
/src/components/UI/MediumHeading.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 |
3 | /**
4 | * @author
5 | * @function MediumHeading
6 | **/
7 |
8 | const MediumHeading = ({ text, style }) => {
9 | return (
10 |
14 | {text}
15 |
16 | );
17 | };
18 |
19 | export default MediumHeading;
20 |
--------------------------------------------------------------------------------
/src/components/UI/Skill/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { CircularProgressbar, buildStyles } from "react-circular-progressbar";
3 | import "react-circular-progressbar/dist/styles.css";
4 | import "./style.css";
5 |
6 | /**
7 | * @author
8 | * @function Skill
9 | **/
10 |
11 | const Skill = (props) => {
12 | return (
13 |
14 |
15 |
23 |
24 |
25 |
26 |
{props.skillName}
27 |
{props.desc}
28 |
29 |
30 | );
31 | };
32 |
33 | export default Skill;
34 |
--------------------------------------------------------------------------------
/src/components/UI/Skill/style.css:
--------------------------------------------------------------------------------
1 | .skillContainer{
2 | width: 80px;
3 | height: 80px;
4 | overflow: hidden;
5 | }
--------------------------------------------------------------------------------
/src/components/UI/SmallHeading.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 |
3 | /**
4 | * @author
5 | * @function SmallHeading
6 | **/
7 |
8 | const SmallHeading = ({ text }) => {
9 | return (
10 |
11 | {text}
12 |
13 | );
14 | };
15 |
16 | export default SmallHeading;
17 |
--------------------------------------------------------------------------------
/src/components/UI/SocialConnect/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import socialIcons from "../../../assets/social-icons";
3 | import "./style.css";
4 |
5 | /**
6 | * @author
7 | * @function SocialConnect
8 | **/
9 |
10 | const SocialConnect = (props) => {
11 | return (
12 |
27 | );
28 | };
29 |
30 | export default SocialConnect;
31 |
--------------------------------------------------------------------------------
/src/components/UI/SocialConnect/style.css:
--------------------------------------------------------------------------------
1 | .socialConnect{
2 | background: #ffffff;
3 | width: 300px;
4 | height: 40px;
5 | display: flex;
6 | justify-content: center;
7 | align-items: center;
8 | border-radius: 20px;
9 | }
10 | .socialConnect .socialLink{
11 | width: 25px;
12 | height: 25px;
13 | border-radius: 50%;
14 | overflow: hidden;
15 | border: 5px solid #ffffff;
16 | margin: 0 2px;
17 | transition: transform .2s ease-out, box-shadow .2s ease-out;
18 | }
19 | .socialConnect .socialLink img{
20 | max-width: 100%;
21 | max-height: 100%;
22 | }
23 |
24 | .socialConnect .socialLink:hover{
25 | transform: scale(1.1);
26 | box-shadow: 0 0 10px 0 #777;
27 | }
--------------------------------------------------------------------------------
/src/components/UI/Tile.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 |
3 | /**
4 | * @author
5 | * @function Tile
6 | **/
7 |
8 | const Tile = ({ title, mediumTitle, desc }) => {
9 | return (
10 |
15 |
{title}
16 |
17 | {mediumTitle}
18 |
19 |
{desc}
20 |
21 | );
22 | };
23 |
24 | export default Tile;
25 |
--------------------------------------------------------------------------------
/src/index.css:
--------------------------------------------------------------------------------
1 | *{
2 | margin: 0;
3 | padding: 0;
4 | font-family: 'Ubuntu', sans-serif;
5 | }
6 | body{
7 | background: url(./assets/images/bg-f2f2f2.jpg);
8 | background-repeat: repeat;
9 | }
10 | .primaryColor{
11 | color: #16c79a;
12 | }
13 | .primaryBgColor{
14 | background: #16c79a;
15 | }
16 | .textColor{
17 | color: #323232;
18 | }
19 | .grey{
20 | color: #aaaaaa;
21 | }
22 | .font-10{
23 | font-size: 10px;
24 | }
25 | .font-12{
26 | font-size: 12px;
27 | }
28 | .font-14{
29 | font-size: 14px;
30 | }
31 | .font-16{
32 | font-size: 16px;
33 | }
34 | .font-18{
35 | font-size: 18px;
36 | }
37 | .font-20{
38 | font-size: 20px;
39 | }
40 | .font-25{
41 | font-size: 25px;
42 | }
43 | .font-30{
44 | font-size: 30px;
45 | }
46 | .bold-300{
47 | font-weight: 300;
48 | }
49 | .bold-400{
50 | font-weight: 400;
51 | }
52 | .bold-500{
53 | font-weight: 500;
54 | }
55 | .bold-600{
56 | font-weight: 600;
57 | }
58 | .bold-700{
59 | font-weight: 700;
60 | }
61 | .uppercase{
62 | text-transform: uppercase;
63 | }
64 | .capitalize{
65 | text-transform: capitalize;
66 | }
67 | .ls-1{
68 | letter-spacing: 1px;
69 | }
70 | .mtb-10{
71 | margin: 10px 0;
72 | }
73 | .mlr-10{
74 | margin: 0 10px;
75 | }
76 | .m-auto{
77 | margin: 0 auto;
78 | }
79 | .ptb{
80 | padding: 10px 0;
81 | }
82 | .plr-10{
83 | padding: 0 10px;
84 | }
85 | .flexRow{
86 | display: flex;
87 | }
88 | .justify-sb{
89 | justify-content: space-between;
90 | }
91 | .align-center{
92 | align-items: center;
93 | }
94 | .text-center{
95 | text-align: center;
96 | }
97 | .container{
98 | width: 900px;
99 | margin: 0 auto;
100 | position: relative;
101 | }
102 | .wrap{
103 | flex-wrap: wrap;
104 | }
105 | a{
106 | text-decoration: none;
107 | color: #323232;
108 | }
109 |
110 | @media screen and (max-width: 900px){
111 | .container{
112 | width: 100%;
113 | }
114 | .flexCol{
115 | flex-direction: column;
116 | }
117 | .font-25{
118 | font-size: 20px;
119 | }
120 | }
121 |
122 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import './index.css';
4 | import App from './App';
5 | import reportWebVitals from './reportWebVitals';
6 |
7 | ReactDOM.render(
8 |
9 |
10 | ,
11 | document.getElementById('root')
12 | );
13 |
14 | // If you want to start measuring performance in your app, pass a function
15 | // to log results (for example: reportWebVitals(console.log))
16 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
17 | reportWebVitals();
18 |
--------------------------------------------------------------------------------
/src/reportWebVitals.js:
--------------------------------------------------------------------------------
1 | const reportWebVitals = onPerfEntry => {
2 | if (onPerfEntry && onPerfEntry instanceof Function) {
3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
4 | getCLS(onPerfEntry);
5 | getFID(onPerfEntry);
6 | getFCP(onPerfEntry);
7 | getLCP(onPerfEntry);
8 | getTTFB(onPerfEntry);
9 | });
10 | }
11 | };
12 |
13 | export default reportWebVitals;
14 |
--------------------------------------------------------------------------------
/src/setupTests.js:
--------------------------------------------------------------------------------
1 | // jest-dom adds custom jest matchers for asserting on DOM nodes.
2 | // allows you to do things like:
3 | // expect(element).toHaveTextContent(/react/i)
4 | // learn more: https://github.com/testing-library/jest-dom
5 | import '@testing-library/jest-dom';
6 |
--------------------------------------------------------------------------------
/src/style.js:
--------------------------------------------------------------------------------
1 | export const colors = {
2 | primaryColor: "#16c79a",
3 | grey: "#aaaaaa",
4 | black: "#323232",
5 | };
6 |
--------------------------------------------------------------------------------