├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── New_Ganesh_Ghadge_Resume.pdf ├── favicon.ico ├── index.html ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── ServiceContext.js ├── index.css ├── index.js └── pages ├── AboutPage.css ├── AboutPage.js ├── ContactPage.css ├── ContactPage.js ├── EducationCert.css ├── EducationCert.js ├── Frontpage.css ├── Frontpage.js ├── NewSkillsPage.css ├── NewSkillsPage.js ├── ProjectExPage.css ├── ProjectExPage.js └── components ├── EducationInterface ├── Certificates.css ├── Certificates.jsx ├── Education.css ├── Education.jsx ├── ProjHome.css └── ProjHome.jsx ├── FooterInterface ├── BottomNav.css ├── BottomNav.jsx ├── Footer.css ├── Footer.jsx ├── Githubcomp.css └── Githubcomp.jsx ├── Loaders ├── Skeleton.css ├── Skeleton.js ├── Spinner.css ├── Spinner.jsx ├── SvgBackground.css └── SvgBackground.jsx ├── LoginInterface ├── AdminUser.css ├── AdminUser.jsx ├── Login.css ├── Login.jsx └── PrivateRoutes.js ├── Navigation ├── Navbar.css └── Navbar.jsx └── SocialMediaLinks.jsx /.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 | # Portfolio Web-Application 2 | ## Screenshots 📸 3 | 4 | Projects & Experiences 5 | 6 |
7 | 8 |
9 |
10 |

DON'T FORGET TO ⭐ THIS REPOSITORY !!! 11 |

12 |
13 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "myportfolio", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@emotion/react": "^11.10.5", 7 | "@emotion/styled": "^11.10.5", 8 | "@mui/icons-material": "^5.10.16", 9 | "@mui/material": "^5.10.17", 10 | "@react-icons/all-files": "^4.1.0", 11 | "@testing-library/jest-dom": "^5.16.4", 12 | "@testing-library/react": "^13.2.0", 13 | "@testing-library/user-event": "^13.5.0", 14 | "aos": "^3.0.0-beta.6", 15 | "axios": "^1.2.1", 16 | "cors": "^2.8.5", 17 | "dotenv": "^16.4.5", 18 | "emailjs-com": "^3.2.0", 19 | "express": "^4.18.2", 20 | "font-awesome": "^4.7.0", 21 | "mongoose": "^6.8.0", 22 | "nodemon": "^2.0.20", 23 | "react": "^18.2.0", 24 | "react-dom": "^18.2.0", 25 | "react-icons": "^4.8.0", 26 | "react-router-dom": "^6.4.3", 27 | "react-router-hash-link": "^2.4.3", 28 | "react-scripts": "5.0.1", 29 | "react-spinners": "^0.13.8", 30 | "react-toastify": "^9.1.1", 31 | "react-typewriter-effect": "^1.1.0", 32 | "web-vitals": "^2.1.4" 33 | }, 34 | "scripts": { 35 | "start": "react-scripts start", 36 | "predeploy": "npm run build", 37 | "deploy": "gh-pages -d build", 38 | "build": "react-scripts build", 39 | "test": "react-scripts test", 40 | "eject": "react-scripts eject" 41 | }, 42 | "eslintConfig": { 43 | "extends": [ 44 | "react-app", 45 | "react-app/jest" 46 | ] 47 | }, 48 | "browserslist": { 49 | "production": [ 50 | ">0.2%", 51 | "not dead", 52 | "not op_mini all" 53 | ], 54 | "development": [ 55 | "last 1 chrome version", 56 | "last 1 firefox version", 57 | "last 1 safari version" 58 | ] 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /public/New_Ganesh_Ghadge_Resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganraj21/Portfolio-Web-Application/b287d30ac760fd2b0c73a4213ad0ac2dba7463c4/public/New_Ganesh_Ghadge_Resume.pdf -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ganraj21/Portfolio-Web-Application/b287d30ac760fd2b0c73a4213ad0ac2dba7463c4/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 14 | 15 | 22 | Ganraj21 | Portfolio 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "GB-Portfolio", 3 | "name": "Ganesh Ghadge Portfolio Web-Applications", 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 | :root { 2 | --light-blue: #04c3ff; 3 | --light-blue-shadow: rgb(69 211 255 / 27%); 4 | --sea-green: #0abead; 5 | --sea-green-dark: #0cbfae; 6 | --sea-green-extra-dark: #09bead; 7 | --sea-green-shadow: rgba(11, 190, 173, 0.4); 8 | --header-hamburger-background: rgba(11, 190, 173, 0.8); 9 | --orange: #f57f17; 10 | --dark-orange: #ff5823; 11 | --orange-shadow: rgba(245, 127, 23, 0.2); 12 | --white: #ffffff; 13 | --black: #333333; 14 | --dark-fans: #1f2235; 15 | --disabled-btn: #09bead7a; 16 | --error-message: #e44f4fd1; 17 | --toast-error: #e44f4ffa; 18 | --toast-shadow: #9c9c9ce3; 19 | --toast-success: #0cbfae; 20 | --loader-color: #0cbfae; 21 | } 22 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { Routes, Route, Navigate } from 'react-router-dom'; 3 | import AboutPage from './pages/AboutPage'; 4 | import Frontpage from './pages/Frontpage'; 5 | import ContactPage from './pages/ContactPage'; 6 | import EducationCert from './pages/EducationCert'; 7 | import ProjectExPage from './pages/ProjectExPage'; 8 | import NewSkillsPage from './pages/NewSkillsPage'; 9 | import Navbar from './pages/components/Navigation/Navbar'; 10 | import Footer from './pages/components/FooterInterface/Footer'; 11 | import Login from './pages/components/LoginInterface/Login'; 12 | import AdminUser from './pages/components/LoginInterface/AdminUser'; 13 | import { PrivateRoutes } from './pages/components/LoginInterface/PrivateRoutes'; 14 | 15 | const App = () => { 16 | return ( 17 | <> 18 | 19 | 20 | 25 | 26 | 27 | 28 | 29 | } 30 | /> 31 | } /> 32 | } /> 33 | } /> 34 | } /> 35 | }> 36 | } /> 37 | 38 | } /> 39 | 40 |