├── .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 | ![image](https://user-images.githubusercontent.com/19981097/86140838-218ec980-bb13-11ea-87c5-504d68c8d2a4.png) 40 | 41 | ## Sidebar 42 | 43 | ![image](https://user-images.githubusercontent.com/19981097/86140963-4aaf5a00-bb13-11ea-854e-012077dd6101.png) 44 | 45 | ## Resume 46 | 47 | ![image](https://user-images.githubusercontent.com/19981097/86141072-6fa3cd00-bb13-11ea-98d4-459d59af8a15.png) 48 | 49 | ## Portfolio 50 | 51 | ![image](https://user-images.githubusercontent.com/19981097/86141235-9f52d500-bb13-11ea-9d7b-44b982a6fd3f.png) 52 | 53 | ## Contact 54 | 55 | ![image](https://user-images.githubusercontent.com/19981097/86141330-bf829400-bb13-11ea-9070-ecd62027078f.png) 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 | 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 |