├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── index.html ├── logo.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── Assets ├── Projects │ ├── 3automation.jpg │ ├── coast.jpg │ ├── cosmos.jpg │ ├── dropship.jpg │ ├── goodFoodDiscounts.png │ ├── guamedia.jpg │ ├── hsp.png │ ├── techspec.png │ └── travelwell.png ├── Sunil_Resume.pdf ├── developer.jpg ├── logo.png └── sunil.jpg ├── Constants.js ├── components ├── About │ ├── About.js │ ├── AboutCard.js │ └── Techstack.js ├── Footer.js ├── Home │ ├── Home.js │ └── TypeWriter.js ├── Navbar.js ├── Preloader.js ├── Projects │ ├── ProjectCards.js │ └── Projects.js ├── Resume │ └── ResumeNew.js ├── ScrollToTop.js └── SocialMedia.js ├── index.css ├── index.js ├── setupTests.js └── style.css /.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 | .eslintcache 21 | 22 | npm-debug.log* 23 | yarn-debug.log* 24 | yarn-error.log* 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
9 |37 |10 | Hi Everyone, I am Sunil Yadav 11 | from Lucknow, India. 12 |
22 |
13 | Software Engineer who loves to transform ideas into reality using 14 | code. 15 |
16 | Motivated designer and developer with experience creating 17 | custom websites with ReactJs, JavaScript, HTML5, CSS3. Shopify app using ReactJs, Javascript, Polaris, Graphql, nodejs, Koajs 18 | and Mobile App using React-native. 19 |
20 | Apart from coding, some other activities that I love to do! 21 |23 |
36 |- 24 |
26 |Playing Games 25 | - 27 |
29 |Writing Tech Blogs 28 | - 30 |
32 |Travelling 31 | - 33 |
35 |Watching Movies 34 |
27 | I am passionate about using Javascript and Animation Libraries 28 | to create awesome user experiences. With over five years of 29 | experience developing web applications using the latest 30 | front-end and back-end technologies. 31 |
32 | 33 |
50 | {" "}
51 | Whether you want to get in touch, or talk about a project
52 | collaboration.
53 |
54 | Feel free to connect with me
55 |
14 | Here are a few projects I've worked on recently. 15 |
16 |