├── .gitignore
├── LICENSE
├── README.md
├── package-lock.json
├── package.json
├── public
├── index.html
├── manifest.json
└── robots.txt
└── src
├── App.css
├── App.js
├── App.test.js
├── avatar.png
├── coffee-apple.jpg
├── components
├── Contact.js
├── Footer.js
├── Header.js
├── Navbar.js
├── Particles.js
├── Portfolio.js
├── Resume.js
└── index.js
├── images
├── html-css-javascript-lg.jpg
├── html-css-javascript.jpg
├── javascript-fullstack.jpg
├── mern-stack.jpg
├── react-redux.jpg
└── react.png
├── index.js
├── serviceWorker.js
└── setupTests.js
/.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 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 Mahmudul Alam
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Material UI Portfolio
2 |
3 | A portfolio single page application using React and Material UI
4 |
5 | ### Demo of this site available here [Material-UI-Portfolio Demo](https://materialui-portfolio.netlify.app/)
6 |
7 | #### Installing
8 |
9 | Clone the repository using following command or download
10 |
11 | ```
12 | git clone https://github.com/devmahmud/material-ui-portfolio.git
13 | ```
14 |
15 | #### To install dependency
16 |
17 | ```
18 | npm install
19 | ```
20 |
21 | #### To start the server
22 |
23 | ```
24 | npm start
25 | ```
26 |
27 | #### For Production Build
28 |
29 | ```
30 | npm run build
31 | ```
32 |
33 | Server will be available at http://127.0.0.1:3000 in your browser
34 |
35 | # Project snapshot
36 |
37 | ## Home page
38 |
39 | 
40 |
41 | ## Sidebar
42 |
43 | 
44 |
45 | ## Resume
46 |
47 | 
48 |
49 | ## Portfolio
50 |
51 | 
52 |
53 | ## Contact
54 |
55 | 
56 |
57 | ## Author
58 |
59 |
60 | Mahmudul alam
61 | Email: expelmahmud@gmail.com
62 |
63 |
64 | ========Thank You !!!=========
65 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "portfolio",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "@material-ui/core": "^4.10.2",
7 | "@material-ui/icons": "^4.9.1",
8 | "@material-ui/styles": "^4.10.0",
9 | "@testing-library/jest-dom": "^4.2.4",
10 | "@testing-library/react": "^9.5.0",
11 | "@testing-library/user-event": "^7.2.1",
12 | "i": "^0.3.6",
13 | "npm": "^6.14.5",
14 | "react": "^16.13.1",
15 | "react-dom": "^16.13.1",
16 | "react-particles-js": "^3.2.1",
17 | "react-router-dom": "^5.2.0",
18 | "react-scripts": "3.4.1",
19 | "react-typed": "^1.2.0"
20 | },
21 | "scripts": {
22 | "start": "react-scripts --openssl-legacy-provider start"
23 | "build": "react-scripts build",
24 | "test": "react-scripts test",
25 | "eject": "react-scripts eject"
26 | },
27 | "eslintConfig": {
28 | "extends": "react-app"
29 | },
30 | "browserslist": {
31 | "production": [
32 | ">0.2%",
33 | "not dead",
34 | "not op_mini all"
35 | ],
36 | "development": [
37 | "last 1 chrome version",
38 | "last 1 firefox version",
39 | "last 1 safari version"
40 | ]
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Portfolio
8 |
9 |
10 |
11 |
12 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/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 | body {
2 | background: url(coffee-apple.jpg) no-repeat center center fixed;
3 | -webkit-background-size: cover;
4 | -moz-background-size: cover;
5 | -o-background-size: cover;
6 | background-size: cover;
7 | }
8 |
--------------------------------------------------------------------------------
/src/App.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { Route, Switch } from "react-router-dom";
3 | import CssBaseline from "@material-ui/core/CssBaseline";
4 | import Home from "./components";
5 | import Resume from "./components/Resume";
6 | import Navbar from "./components/Navbar";
7 | import Portfolio from "./components/Portfolio";
8 | import Contact from "./components/Contact";
9 |
10 | import "./App.css";
11 |
12 | function App() {
13 | return (
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | );
25 | }
26 |
27 | export default App;
28 |
--------------------------------------------------------------------------------
/src/App.test.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { render } from '@testing-library/react';
3 | import App from './App';
4 |
5 | test('renders learn react link', () => {
6 | const { getByText } = render();
7 | const linkElement = getByText(/learn react/i);
8 | expect(linkElement).toBeInTheDocument();
9 | });
10 |
--------------------------------------------------------------------------------
/src/avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devmahmud/material-ui-portfolio/f18d07c2a740341d13aa0b94cc7c318094d4dbb3/src/avatar.png
--------------------------------------------------------------------------------
/src/coffee-apple.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devmahmud/material-ui-portfolio/f18d07c2a740341d13aa0b94cc7c318094d4dbb3/src/coffee-apple.jpg
--------------------------------------------------------------------------------
/src/components/Contact.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { makeStyles, withStyles } from "@material-ui/core/styles";
3 | import Box from "@material-ui/core/Box";
4 | import TextField from "@material-ui/core/TextField";
5 | import Typography from "@material-ui/core/Typography";
6 | import Grid from "@material-ui/core/Grid";
7 | import Button from "@material-ui/core/Button";
8 |
9 | import Send from "@material-ui/icons/Send";
10 |
11 | const useStyles = makeStyles((theme) => ({
12 | contactContainer: {
13 | background: "#233",
14 | height: "100vh",
15 | },
16 | heading: {
17 | color: "tomato",
18 | textAlign: "center",
19 | textTransform: "uppercase",
20 | marginBottom: "1rem",
21 | },
22 | form: {
23 | top: "50%",
24 | left: "50%",
25 | transform: "translate(-50%, -50%)",
26 | position: "absolute",
27 | },
28 | input: {
29 | color: "#fff",
30 | },
31 | button: {
32 | marginTop: "1rem",
33 | color: "tomato",
34 | borderColor: "tan",
35 | },
36 | field: {
37 | margin: "1rem 0rem",
38 | },
39 | }));
40 |
41 | const InputField = withStyles({
42 | root: {
43 | "& label.Mui-focused": {
44 | color: "tomato",
45 | },
46 | "& label": {
47 | color: "tan",
48 | },
49 | "& .MuiOutlinedInput-root": {
50 | "& fieldset": {
51 | borderColor: "tan",
52 | },
53 | "&:hover fieldset": {
54 | borderColor: "tan",
55 | },
56 | "&.Mui-focused fieldset": {
57 | color: "#fff",
58 | borderColor: "tan",
59 | },
60 | },
61 | },
62 | })(TextField);
63 |
64 | const Contact = () => {
65 | const classes = useStyles();
66 | return (
67 |
68 |
69 |
70 |
71 | Hire or Contact me...
72 |
73 |
79 |
86 |
94 | }
98 | className={classes.button}
99 | >
100 | Contact Me
101 |
102 |
103 |
104 |
105 | );
106 | };
107 |
108 | export default Contact;
109 |
--------------------------------------------------------------------------------
/src/components/Footer.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { makeStyles } from "@material-ui/core/styles";
3 | import BottomNavigation from "@material-ui/core/BottomNavigation";
4 | import BottomNavigationAction from "@material-ui/core/BottomNavigationAction";
5 | import Facebook from "@material-ui/icons/Facebook";
6 | import Twitter from "@material-ui/icons/Twitter";
7 | import Instagram from "@material-ui/icons/Instagram";
8 |
9 | const useStyles = makeStyles({
10 | bottomNavContainer: {
11 | background: "#222",
12 | height: "55px",
13 | overflow: "hidden",
14 | },
15 | root: {
16 | "& .MuiSvgIcon-root": {
17 | fill: "tan",
18 | "&:hover": {
19 | fill: "tomato",
20 | fontSize: "1.8rem",
21 | },
22 | },
23 | },
24 | });
25 |
26 | const Footer = () => {
27 | const classes = useStyles();
28 |
29 | return (
30 |
31 | } className={classes.root} />
32 | } className={classes.root} />
33 | } className={classes.root} />
34 |
35 | );
36 | };
37 | export default Footer;
38 |
--------------------------------------------------------------------------------
/src/components/Header.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import Typography from "@material-ui/core/Typography";
3 | import Avatar from "@material-ui/core/Avatar";
4 | import Grid from "@material-ui/core/Grid";
5 | import Box from "@material-ui/core/Box";
6 | import Typed from "react-typed";
7 | import { makeStyles } from "@material-ui/core/styles";
8 | import avatar from "../avatar.png";
9 |
10 | const useStyles = makeStyles((theme) => ({
11 | avatar: {
12 | width: theme.spacing(15),
13 | height: theme.spacing(15),
14 | margin: theme.spacing(1),
15 | },
16 | title: {
17 | color: "tomato",
18 | },
19 | subtitle: {
20 | color: "tan",
21 | textTransform: "uppercase",
22 | },
23 | typedContainer: {
24 | position: "absolute",
25 | top: "50%",
26 | left: "50%",
27 | transform: "translate(-50%,-50%)",
28 | width: "100vw",
29 | textAlign: "center",
30 | zIndex: 1,
31 | },
32 | }));
33 |
34 | const Header = () => {
35 | const classes = useStyles();
36 |
37 | return (
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
57 |
58 |
59 | );
60 | };
61 |
62 | export default Header;
63 |
--------------------------------------------------------------------------------
/src/components/Navbar.js:
--------------------------------------------------------------------------------
1 | import React, { useState } from "react";
2 | import { Link } from "react-router-dom";
3 | import Drawer from "@material-ui/core/Drawer";
4 | import Box from "@material-ui/core/Box";
5 | import AppBar from "@material-ui/core/AppBar";
6 | import Toolbar from "@material-ui/core/Toolbar";
7 | import IconButton from "@material-ui/core/IconButton";
8 | import List from "@material-ui/core/List";
9 | import ListItem from "@material-ui/core/ListItem";
10 | import ListItemIcon from "@material-ui/core/ListItemIcon";
11 | import ListItemText from "@material-ui/core/ListItemText";
12 | import Avatar from "@material-ui/core/Avatar";
13 | import Divider from "@material-ui/core/Divider";
14 | import Typography from "@material-ui/core/Typography";
15 | import ArrowBack from "@material-ui/icons/ArrowBack";
16 | import AssignmentInd from "@material-ui/icons/AssignmentInd";
17 | import Home from "@material-ui/icons/Home";
18 | import Apps from "@material-ui/icons/Apps";
19 | import ContactMail from "@material-ui/icons/ContactMail";
20 | import { makeStyles } from "@material-ui/core/styles";
21 | import avatar from "../avatar.png";
22 |
23 | import Footer from "../components/Footer";
24 |
25 | const useStyles = makeStyles((theme) => ({
26 | appbar: {
27 | background: "#222",
28 | margin: 0,
29 | },
30 | arrow: {
31 | color: "tomato",
32 | },
33 | title: {
34 | color: "tan",
35 | },
36 | menuSliderContainer: {
37 | width: 250,
38 | background: "#511",
39 | height: "100%",
40 | },
41 | avatar: {
42 | display: "block",
43 | margin: "0.5rem auto",
44 | width: theme.spacing(13),
45 | height: theme.spacing(13),
46 | },
47 | listItem: {
48 | color: "tan",
49 | },
50 | }));
51 |
52 | const menuItems = [
53 | { listIcon: , listText: "Home", listPath: "/" },
54 | { listIcon: , listText: "Resume", listPath: "/resume" },
55 | { listIcon: , listText: "Portfolio", listPath: "/portfolio" },
56 | { listIcon: , listText: "Contact", listPath: "/contact" },
57 | ];
58 |
59 | const Navbar = () => {
60 | const [open, setOpen] = useState(false);
61 |
62 | const classes = useStyles();
63 |
64 | const sideList = () => (
65 |
66 |
67 |
68 |
69 | {menuItems.map((item, i) => (
70 | setOpen(false)}
75 | component={Link}
76 | to={item.listPath}
77 | >
78 |
79 | {item.listIcon}
80 |
81 |
82 |
83 | ))}
84 |
85 |
86 | );
87 |
88 | return (
89 |
90 |
91 |
92 |
93 | setOpen(true)}>
94 |
95 |
96 |
97 | Portfolio
98 |
99 |
100 |
101 |
102 | setOpen(false)}>
103 | {sideList()}
104 |
105 |
106 |
107 | );
108 | };
109 |
110 | export default Navbar;
111 |
--------------------------------------------------------------------------------
/src/components/Particles.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { Particles as ReactParticles } from "react-particles-js";
3 | import { makeStyles } from "@material-ui/core/styles";
4 |
5 | const useStyles = makeStyles((theme) => ({
6 | particlesCanvas: {
7 | position: "fixed",
8 | opacity: "0.3"
9 | },
10 | }));
11 |
12 | const Particles = () => {
13 | const classes = useStyles();
14 |
15 | return (
16 |
57 | );
58 | };
59 |
60 | export default Particles;
61 |
--------------------------------------------------------------------------------
/src/components/Portfolio.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { makeStyles } from "@material-ui/core/styles";
3 | import Box from "@material-ui/core/Box";
4 | import Grid from "@material-ui/core/Grid";
5 | import Card from "@material-ui/core/Card";
6 | import CardActionArea from "@material-ui/core/CardActionArea";
7 | import CardActions from "@material-ui/core/CardActions";
8 | import CardContent from "@material-ui/core/CardContent";
9 | import CardMedia from "@material-ui/core/CardMedia";
10 | import Button from "@material-ui/core/Button";
11 | import Typography from "@material-ui/core/Typography";
12 |
13 | import project1 from "../images/html-css-javascript-lg.jpg";
14 | import project2 from "../images/html-css-javascript.jpg";
15 | import project3 from "../images/javascript-fullstack.jpg";
16 | import project4 from "../images/mern-stack.jpg";
17 | import project5 from "../images/react-redux.jpg";
18 | import project6 from "../images/react.png";
19 |
20 | const useStyles = makeStyles((theme) => ({
21 | mainContainer: {
22 | background: "#233",
23 | height: "100%",
24 | },
25 | cardContainer: {
26 | maxWidth: 345,
27 | margin: "3rem auto",
28 | },
29 | }));
30 |
31 | const projects = [
32 | {
33 | name: "Project 1",
34 | description: `Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quis
35 | consequatur magni quod nesciunt necessitatibus molestiae non
36 | eligendi, magnam est aliquam recusandae? Magnam soluta minus
37 | iste alias sunt veritatis nisi dolores!`,
38 | image: project1,
39 | },
40 | {
41 | name: "Project 2",
42 | description: `Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quis\
43 | consequatur magni quod nesciunt necessitatibus molestiae non\
44 | eligendi, magnam est aliquam recusandae? Magnam soluta minus\
45 | iste alias sunt veritatis nisi dolores!`,
46 | image: project2,
47 | },
48 | {
49 | name: "Project 3",
50 | description: `Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quis\
51 | consequatur magni quod nesciunt necessitatibus molestiae non\
52 | eligendi, magnam est aliquam recusandae? Magnam soluta minus\
53 | iste alias sunt veritatis nisi dolores!`,
54 | image: project3,
55 | },
56 | {
57 | name: "Project 4",
58 | description: `Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quis\
59 | consequatur magni quod nesciunt necessitatibus molestiae non\
60 | eligendi, magnam est aliquam recusandae? Magnam soluta minus\
61 | iste alias sunt veritatis nisi dolores!`,
62 | image: project4,
63 | },
64 | {
65 | name: "Project 5",
66 | description: `Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quis\
67 | consequatur magni quod nesciunt necessitatibus molestiae non\
68 | eligendi, magnam est aliquam recusandae? Magnam soluta minus\
69 | iste alias sunt veritatis nisi dolores!`,
70 | image: project5,
71 | },
72 | {
73 | name: "Project 6",
74 | description: `Lorem ipsum dolor sit, amet consectetur adipisicing elit. Quis\
75 | consequatur magni quod nesciunt necessitatibus molestiae non\
76 | eligendi, magnam est aliquam recusandae? Magnam soluta minus\
77 | iste alias sunt veritatis nisi dolores!`,
78 | image: project6,
79 | },
80 | ];
81 |
82 | const Portfolio = () => {
83 | const classes = useStyles();
84 | return (
85 |
86 |
87 | {/* Projects */}
88 | {projects.map((project, i) => (
89 |
90 |
91 |
92 |
98 |
99 |
100 | {project.name}
101 |
102 |
103 | {project.description}
104 |
105 |
106 |
107 |
108 |
111 |
114 |
115 |
116 |
117 | ))}
118 |
119 |
120 | );
121 | };
122 |
123 | export default Portfolio;
124 |
--------------------------------------------------------------------------------
/src/components/Resume.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { makeStyles } from "@material-ui/core/styles";
3 | import Typography from "@material-ui/core/Typography";
4 | import Box from "@material-ui/core/Box";
5 |
6 | const useStyles = makeStyles((theme) => ({
7 | mainContainer: {
8 | background: "#233",
9 | },
10 | timeLine: {
11 | position: "relative",
12 | padding: "1rem",
13 | margin: "o auto",
14 | "&:before": {
15 | content: "''",
16 | position: "absolute",
17 | height: "100%",
18 | border: "1px solid tan",
19 | right: "40px",
20 | top: 0,
21 | },
22 | "&:after": {
23 | content: "''",
24 | display: "table",
25 | clear: "both",
26 | },
27 | [theme.breakpoints.up("md")]: {
28 | padding: "2rem",
29 | "&:before": {
30 | left: "calc(50% - 1px)",
31 | right: "auto",
32 | },
33 | },
34 | },
35 | timeLineItem: {
36 | padding: "1rem",
37 | borderBottom: "2px solid tan",
38 | position: "relative",
39 | margin: "1rem 3rem 1rem 1rem",
40 | clear: "both",
41 | "&:after": {
42 | content: "''",
43 | position: "absolute",
44 | },
45 | "&:before": {
46 | content: "''",
47 | position: "absolute",
48 | right: "-0.625rem",
49 | top: "calc(50% - 5px)",
50 | borderStyle: "solid",
51 | borderColor: "tomato tomato transparent transparent",
52 | borderWidth: "0.625rem",
53 | transform: "rotate(45deg)",
54 | },
55 | [theme.breakpoints.up("md")]: {
56 | width: "44%",
57 | margin: "1rem",
58 | "&:nth-of-type(2n)": {
59 | float: "right",
60 | margin: "1rem",
61 | borderColor: "tan",
62 | },
63 | "&:nth-of-type(2n):before": {
64 | right: "auto",
65 | left: "-0.625rem",
66 | borderColor: "transparent transparent tomato tomato",
67 | },
68 | },
69 | },
70 | timeLineYear: {
71 | textAlign: "center",
72 | maxWidth: "9.375rem",
73 | margin: "0 3rem 0 auto",
74 | fontSize: "1.8rem",
75 | color: "#fff",
76 | background: "tomato",
77 | lineHeight: 1,
78 | padding: "0.5rem 1rem",
79 | "&:before": {
80 | display: "none",
81 | },
82 | [theme.breakpoints.up("md")]: {
83 | textAlign: "center",
84 | margin: "0 auto",
85 | "&:nth-of-type(2n)": {
86 | float: "none",
87 | margin: "0 auto",
88 | },
89 | "&:nth-of-type(2n):before": {
90 | display: "none",
91 | },
92 | },
93 | },
94 | heading: {
95 | color: "tomato",
96 | padding: "3rem 0",
97 | textTransform: "uppercase",
98 | },
99 | subHeading: {
100 | color: "#fff",
101 | padding: 0,
102 | textTransform: "uppercase",
103 | },
104 | body1: {
105 | color: "tomato",
106 | },
107 | subtitle1: {
108 | color: "tan",
109 | },
110 | }));
111 |
112 | const Resume = () => {
113 | const classes = useStyles();
114 | return (
115 |
116 |
117 | Working Experience
118 |
119 |
120 |
124 | 2013
125 |
126 |
127 |
132 | web design
133 |
134 |
135 | company name where worked
136 |
137 |
142 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Vero quas
143 | ipsa, laudantium totam perferendis possimus voluptatibus tenetur.
144 | Quasi voluptatibus, nam vitae eaque ad, officia laboriosam
145 | repudiandae, rerum necessitatibus nisi mollitia.
146 |
147 |
148 |
152 | 2014
153 |
154 |
155 |
160 | html & css
161 |
162 |
163 | company name where worked
164 |
165 |
170 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Vero quas
171 | ipsa, laudantium totam perferendis possimus voluptatibus tenetur.
172 | Quasi voluptatibus, nam vitae eaque ad, officia laboriosam
173 | repudiandae, rerum necessitatibus nisi mollitia.
174 |
175 |
176 |
180 | 2015
181 |
182 |
183 |
188 | Fullstack Javascript
189 |
190 |
191 | company name where worked
192 |
193 |
198 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Vero quas
199 | ipsa, laudantium totam perferendis possimus voluptatibus tenetur.
200 | Quasi voluptatibus, nam vitae eaque ad, officia laboriosam
201 | repudiandae, rerum necessitatibus nisi mollitia.
202 |
203 |
204 |
208 | 2017
209 |
210 |
211 |
216 | Django & React
217 |
218 |
219 | company name where worked
220 |
221 |
226 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Vero quas
227 | ipsa, laudantium totam perferendis possimus voluptatibus tenetur.
228 | Quasi voluptatibus, nam vitae eaque ad, officia laboriosam
229 | repudiandae, rerum necessitatibus nisi mollitia.
230 |
231 |
232 |
233 |
234 | );
235 | };
236 |
237 | export default Resume;
238 |
--------------------------------------------------------------------------------
/src/components/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import Header from "./Header";
3 | import Particles from "./Particles";
4 |
5 | const Home = () => {
6 | return (
7 |
8 |
9 |
10 |
11 | );
12 | };
13 |
14 | export default Home;
15 |
--------------------------------------------------------------------------------
/src/images/html-css-javascript-lg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devmahmud/material-ui-portfolio/f18d07c2a740341d13aa0b94cc7c318094d4dbb3/src/images/html-css-javascript-lg.jpg
--------------------------------------------------------------------------------
/src/images/html-css-javascript.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devmahmud/material-ui-portfolio/f18d07c2a740341d13aa0b94cc7c318094d4dbb3/src/images/html-css-javascript.jpg
--------------------------------------------------------------------------------
/src/images/javascript-fullstack.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devmahmud/material-ui-portfolio/f18d07c2a740341d13aa0b94cc7c318094d4dbb3/src/images/javascript-fullstack.jpg
--------------------------------------------------------------------------------
/src/images/mern-stack.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devmahmud/material-ui-portfolio/f18d07c2a740341d13aa0b94cc7c318094d4dbb3/src/images/mern-stack.jpg
--------------------------------------------------------------------------------
/src/images/react-redux.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devmahmud/material-ui-portfolio/f18d07c2a740341d13aa0b94cc7c318094d4dbb3/src/images/react-redux.jpg
--------------------------------------------------------------------------------
/src/images/react.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devmahmud/material-ui-portfolio/f18d07c2a740341d13aa0b94cc7c318094d4dbb3/src/images/react.png
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import ReactDOM from "react-dom";
3 | import {BrowserRouter as Router} from 'react-router-dom'
4 | import App from "./App";
5 | import * as serviceWorker from "./serviceWorker";
6 |
7 | ReactDOM.render(, document.getElementById("root"));
8 |
9 | // If you want your app to work offline and load faster, you can change
10 | // unregister() to register() below. Note this comes with some pitfalls.
11 | // Learn more about service workers: https://bit.ly/CRA-PWA
12 | serviceWorker.unregister();
13 |
--------------------------------------------------------------------------------
/src/serviceWorker.js:
--------------------------------------------------------------------------------
1 | // This optional code is used to register a service worker.
2 | // register() is not called by default.
3 |
4 | // This lets the app load faster on subsequent visits in production, and gives
5 | // it offline capabilities. However, it also means that developers (and users)
6 | // will only see deployed updates on subsequent visits to a page, after all the
7 | // existing tabs open on the page have been closed, since previously cached
8 | // resources are updated in the background.
9 |
10 | // To learn more about the benefits of this model and instructions on how to
11 | // opt-in, read https://bit.ly/CRA-PWA
12 |
13 | const isLocalhost = Boolean(
14 | window.location.hostname === 'localhost' ||
15 | // [::1] is the IPv6 localhost address.
16 | window.location.hostname === '[::1]' ||
17 | // 127.0.0.0/8 are considered localhost for IPv4.
18 | window.location.hostname.match(
19 | /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/
20 | )
21 | );
22 |
23 | export function register(config) {
24 | if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
25 | // The URL constructor is available in all browsers that support SW.
26 | const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href);
27 | if (publicUrl.origin !== window.location.origin) {
28 | // Our service worker won't work if PUBLIC_URL is on a different origin
29 | // from what our page is served on. This might happen if a CDN is used to
30 | // serve assets; see https://github.com/facebook/create-react-app/issues/2374
31 | return;
32 | }
33 |
34 | window.addEventListener('load', () => {
35 | const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`;
36 |
37 | if (isLocalhost) {
38 | // This is running on localhost. Let's check if a service worker still exists or not.
39 | checkValidServiceWorker(swUrl, config);
40 |
41 | // Add some additional logging to localhost, pointing developers to the
42 | // service worker/PWA documentation.
43 | navigator.serviceWorker.ready.then(() => {
44 | console.log(
45 | 'This web app is being served cache-first by a service ' +
46 | 'worker. To learn more, visit https://bit.ly/CRA-PWA'
47 | );
48 | });
49 | } else {
50 | // Is not localhost. Just register service worker
51 | registerValidSW(swUrl, config);
52 | }
53 | });
54 | }
55 | }
56 |
57 | function registerValidSW(swUrl, config) {
58 | navigator.serviceWorker
59 | .register(swUrl)
60 | .then(registration => {
61 | registration.onupdatefound = () => {
62 | const installingWorker = registration.installing;
63 | if (installingWorker == null) {
64 | return;
65 | }
66 | installingWorker.onstatechange = () => {
67 | if (installingWorker.state === 'installed') {
68 | if (navigator.serviceWorker.controller) {
69 | // At this point, the updated precached content has been fetched,
70 | // but the previous service worker will still serve the older
71 | // content until all client tabs are closed.
72 | console.log(
73 | 'New content is available and will be used when all ' +
74 | 'tabs for this page are closed. See https://bit.ly/CRA-PWA.'
75 | );
76 |
77 | // Execute callback
78 | if (config && config.onUpdate) {
79 | config.onUpdate(registration);
80 | }
81 | } else {
82 | // At this point, everything has been precached.
83 | // It's the perfect time to display a
84 | // "Content is cached for offline use." message.
85 | console.log('Content is cached for offline use.');
86 |
87 | // Execute callback
88 | if (config && config.onSuccess) {
89 | config.onSuccess(registration);
90 | }
91 | }
92 | }
93 | };
94 | };
95 | })
96 | .catch(error => {
97 | console.error('Error during service worker registration:', error);
98 | });
99 | }
100 |
101 | function checkValidServiceWorker(swUrl, config) {
102 | // Check if the service worker can be found. If it can't reload the page.
103 | fetch(swUrl, {
104 | headers: { 'Service-Worker': 'script' },
105 | })
106 | .then(response => {
107 | // Ensure service worker exists, and that we really are getting a JS file.
108 | const contentType = response.headers.get('content-type');
109 | if (
110 | response.status === 404 ||
111 | (contentType != null && contentType.indexOf('javascript') === -1)
112 | ) {
113 | // No service worker found. Probably a different app. Reload the page.
114 | navigator.serviceWorker.ready.then(registration => {
115 | registration.unregister().then(() => {
116 | window.location.reload();
117 | });
118 | });
119 | } else {
120 | // Service worker found. Proceed as normal.
121 | registerValidSW(swUrl, config);
122 | }
123 | })
124 | .catch(() => {
125 | console.log(
126 | 'No internet connection found. App is running in offline mode.'
127 | );
128 | });
129 | }
130 |
131 | export function unregister() {
132 | if ('serviceWorker' in navigator) {
133 | navigator.serviceWorker.ready
134 | .then(registration => {
135 | registration.unregister();
136 | })
137 | .catch(error => {
138 | console.error(error.message);
139 | });
140 | }
141 | }
142 |
--------------------------------------------------------------------------------
/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/extend-expect';
6 |
--------------------------------------------------------------------------------