├── .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 |
31 | I am a Developer and Designer based in Pune, India 🌍. I have always 32 | been fascinated by Knowledge 🧠 and learning new things. Throughout 33 | my life, I have spoken, read and written in English fluently. 34 | Currently, I'm exploring Restful API's 👩🏾💻 as part of my skillset. 35 | When not working on projects or spending time with family or 36 | friends, you can usually find me watching YouTube videos 💻 or 37 | listening to music 🎧. As an experienced Web developer who is 38 | skilled in many areas of development 😎 (responsive design being 39 | one),I would love to work with businesses both small and large! 40 |
41 |23 | Hello, I'M 24 | Ganesh Ghadge 25 |
26 |{indata.educ_info}
45 |17 | You can find all of my projects on my profile on Github. You can 18 | view my activities, contributions and code on these projects. Some 19 | of these are completed and some are in progress. You can also leave 20 | comments on the profile and start a discussion. I am always looking 21 | for new projects and Ideas. You can also reach out to me on any of 22 | the social media channels mentioned below. 23 |
24 |26 | Need any help with your projects? contact me at the places 27 | mentioned below. I will try to get back to you as fast as I can. 28 |
29 |Follow me for more such Projects.
30 |{data.navbar_name}
70 |{e.data_value}
92 |99 | 100 | Name : 101 | 102 | {val.name} 103 |
104 |105 | 106 | Email : 107 | 108 | {val.email} 109 |
110 |111 | 112 | createdAt : 113 | 114 | {val.createdAt} 115 |
116 |117 | 118 | Msg : 119 | 120 |
{val.message}
121 | 122 |