├── .firebaserc ├── public ├── robots.txt ├── favicon.ico ├── logo191.png ├── logo192.png ├── manifest.json └── index.html ├── src ├── res │ ├── bg-2.jpg │ └── logo.png ├── App.js ├── setupTests.js ├── App.test.js ├── Bhaswati Roy ├── index.css ├── reportWebVitals.js ├── index.js ├── Components │ ├── Header │ │ ├── Header.js │ │ └── Header.module.css │ ├── Home.module.css │ └── Home.js ├── App.css ├── UI │ └── Card │ │ ├── Card.js │ │ └── Card.module.css ├── logo.svg └── upload │ └── data.js ├── firebase.json ├── Data.js ├── .gitignore ├── .github └── workflows │ ├── firebase-hosting-merge.yml │ └── firebase-hosting-pull-request.yml ├── package.json ├── LICENSE ├── README.md └── CODE_OF_CONDUCT.md /.firebaserc: -------------------------------------------------------------------------------- 1 | { 2 | "projects": { 3 | "default": "awsugjaipur-halloftechies" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /src/res/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-User-Group-Jaipur-Rajasthan/HallOfTechies/HEAD/src/res/bg-2.jpg -------------------------------------------------------------------------------- /src/res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-User-Group-Jaipur-Rajasthan/HallOfTechies/HEAD/src/res/logo.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-User-Group-Jaipur-Rajasthan/HallOfTechies/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-User-Group-Jaipur-Rajasthan/HallOfTechies/HEAD/public/logo191.png -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AWS-User-Group-Jaipur-Rajasthan/HallOfTechies/HEAD/public/logo192.png -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import './App.css'; 2 | import Home from './Components/Home'; 3 | 4 | function App() { 5 | return ( 6 |
7 | 8 |
9 | ); 10 | } 11 | 12 | export default App; 13 | -------------------------------------------------------------------------------- /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'; 6 | -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | { 2 | "hosting": { 3 | "public": "build", 4 | "ignore": [ 5 | "firebase.json", 6 | "**/.*", 7 | "**/node_modules/**" 8 | ], 9 | "rewrites": [ 10 | { 11 | "source": "**", 12 | "destination": "/index.html" 13 | } 14 | ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/Bhaswati Roy: -------------------------------------------------------------------------------- 1 | { 2 | name: "Bhaswati Roy", 3 | role: "Student", 4 | image: "GITHUB PROFILE IMAGE LINK", 5 | skills: ['Data Analysis', 'Machine Learning', 'C++', 'Python'], 6 | link: [ 7 | "https://github.com/BhaswatiRoy", 8 | "https://www.linkedin.com/in/bhaswati-roy-6561641b6/", 9 | "https://twitter.com/__bhaswati__", 10 | ], 11 | } 12 | -------------------------------------------------------------------------------- /Data.js: -------------------------------------------------------------------------------- 1 | { 2 | name: "Neelam Upadhyay", 3 | role: "Fullstack Developer , AWs Cloud, IT Security ", 4 | image: "https://github.com/nlmupdy01.png ", 5 | skills: ['HTML', 'css', 'js', 'python', 'cloud', 'cybersecurity'], 6 | link: [ 7 | "https://github.com/nlmupdy01", 8 | "https://linkedin.com/in/neelam-upadhyay-8736a3115", 9 | "https://twitter.com/nlmupdy", 10 | ], 11 | } 12 | 13 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /.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 | 25 | ./firebase -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom"; 3 | import "./index.css"; 4 | import App from "./App"; 5 | import reportWebVitals from "./reportWebVitals"; 6 | 7 | ReactDOM.render( 8 | 9 | 10 | , 11 | document.getElementById("root") 12 | ); 13 | 14 | // If you want to start measuring performance in your app, pass a function 15 | // to log results (for example: reportWebVitals(console.log)) 16 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 17 | reportWebVitals(); 18 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /.github/workflows/firebase-hosting-merge.yml: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by the Firebase CLI 2 | # https://github.com/firebase/firebase-tools 3 | 4 | name: Deploy to Firebase Hosting on merge 5 | 'on': 6 | push: 7 | branches: 8 | - main 9 | jobs: 10 | build_and_deploy: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v2 14 | - run: npm ci && npm run build 15 | - uses: FirebaseExtended/action-hosting-deploy@v0 16 | with: 17 | repoToken: '${{ secrets.GITHUB_TOKEN }}' 18 | firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_AWSUGJAIPUR_HALLOFTECHIES }}' 19 | channelId: live 20 | projectId: awsugjaipur-halloftechies 21 | -------------------------------------------------------------------------------- /src/Components/Header/Header.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import classes from "./Header.module.css"; 3 | import logo from "./../../res/logo.png"; 4 | 5 | export default function Header(props) { 6 | 7 | const inputHandler = (e) => { 8 | props.onSearch(e.target.value); 9 | }; 10 | 11 | return ( 12 |
13 |
14 | logo 15 |
16 |

Hall Of Techies

17 |
18 | 23 |
24 |
25 | ); 26 | } 27 | // onSearch 28 | -------------------------------------------------------------------------------- /.github/workflows/firebase-hosting-pull-request.yml: -------------------------------------------------------------------------------- 1 | # This file was auto-generated by the Firebase CLI 2 | # https://github.com/firebase/firebase-tools 3 | 4 | name: Deploy to Firebase Hosting on PR 5 | 'on': pull_request 6 | jobs: 7 | build_and_preview: 8 | if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}' 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@v2 12 | - run: npm ci && npm run build 13 | - uses: FirebaseExtended/action-hosting-deploy@v0 14 | with: 15 | repoToken: '${{ secrets.GITHUB_TOKEN }}' 16 | firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_AWSUGJAIPUR_HALLOFTECHIES }}' 17 | projectId: awsugjaipur-halloftechies 18 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "showcase", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@material-ui/core": "^4.12.0", 7 | "@material-ui/icons": "^4.11.2", 8 | "@material-ui/lab": "^4.0.0-alpha.60", 9 | "@testing-library/jest-dom": "^5.14.1", 10 | "@testing-library/react": "^11.2.7", 11 | "@testing-library/user-event": "^12.8.3", 12 | "react": "^17.0.2", 13 | "react-dom": "^17.0.2", 14 | "react-scripts": "4.0.3", 15 | "web-vitals": "^1.1.2" 16 | }, 17 | "scripts": { 18 | "start": "react-scripts start", 19 | "build": "react-scripts build", 20 | "test": "react-scripts test", 21 | "eject": "react-scripts eject" 22 | }, 23 | "eslintConfig": { 24 | "extends": [ 25 | "react-app", 26 | "react-app/jest" 27 | ] 28 | }, 29 | "browserslist": { 30 | "production": [ 31 | ">0.2%", 32 | "not dead", 33 | "not op_mini all" 34 | ], 35 | "development": [ 36 | "last 1 chrome version", 37 | "last 1 firefox version", 38 | "last 1 safari version" 39 | ] 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | *, 2 | *::before, 3 | *::after { 4 | box-sizing: border-box; 5 | padding: 0; 6 | margin: 0; 7 | } 8 | 9 | :root { 10 | --ff-nav: 'Montserrat', sans-serif; 11 | 12 | --fs-body: 1rem; 13 | --fs-h1: 3rem; 14 | --fs-h2: 2.25rem; 15 | --fs-h3: 1.25rem; 16 | 17 | --clr-light: #fff; 18 | --clr-dark: #000; 19 | 20 | --clr-accent: rgb(1, 1, 34); 21 | --clr-second: rgb(17, 78, 114); 22 | /* --clr-second: rgb(0, 0, 0); */ 23 | } 24 | 25 | @media (min-width: 600px) { 26 | :root { 27 | --fs-h1: 4.5rem; 28 | --fs-h2: 3.75rem; 29 | --fs-h3: 1.5rem; 30 | --fs-body: 1.125rem; 31 | } 32 | } 33 | 34 | html { 35 | scroll-behavior: smooth; 36 | } 37 | 38 | body { 39 | /* background: rgb(167, 11, 219); */ 40 | 41 | /* color: var(--clr-light); */ 42 | font-family: var(--ff-nav); 43 | font-size: var(--fs-body); 44 | line-height: 1.6; 45 | /* background: var(--clr-accent); */ 46 | overflow: auto; 47 | /* min-height: 100vh; */ 48 | scroll-behavior: smooth; 49 | /* background-image: url(./res/bg.jpg); */ 50 | } 51 | 52 | /* main-container */ 53 | 54 | .main-container { 55 | display: block; 56 | } 57 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 AWS User Group Jaipur Rajasthan 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. -------------------------------------------------------------------------------- /src/Components/Home.module.css: -------------------------------------------------------------------------------- 1 | .home { 2 | background: url('./../res/bg-2.jpg'); 3 | background-size: cover; 4 | height: auto; 5 | background-repeat: no-repeat; 6 | background-attachment: fixed; 7 | position: relative; 8 | } 9 | 10 | .content { 11 | padding: 1em; 12 | display: flex; 13 | flex-wrap: wrap; 14 | min-height: 100vh; 15 | color: #fff; 16 | position: relative; 17 | justify-content: center; 18 | } 19 | 20 | .overlay { 21 | position: absolute; 22 | top: 0; 23 | left: 0; 24 | right: 0; 25 | bottom: 0; 26 | background-image: linear-gradient( 27 | to left top, 28 | #4e4e6f, 29 | #414073cb, 30 | #333176b7, 31 | #2322787e, 32 | #0f0f7888 33 | ); 34 | background-repeat: no-repeat; 35 | background-position: center; 36 | background-size: contain; 37 | } 38 | 39 | .pagination { 40 | background-color: rgb(241, 241, 241); 41 | background: rgba(0, 0, 0, 0.76); 42 | color: #fff !important; 43 | width: 100%; 44 | height: 100%; 45 | display: flex; 46 | justify-content: center; 47 | position: fixed; 48 | padding: 1em; 49 | bottom: 0; 50 | left: 0%; 51 | right: 0; 52 | top: 90%; 53 | } 54 | 55 | .pagination nav ul li button { 56 | width: auto; 57 | color: #fff !important; 58 | } 59 | 60 | .nodata { 61 | text-align: center; 62 | z-index: 10; 63 | color: #000; 64 | } 65 | -------------------------------------------------------------------------------- /src/Components/Header/Header.module.css: -------------------------------------------------------------------------------- 1 | .header { 2 | width: 100%; 3 | display: flex; 4 | flex-direction: column; 5 | height: 14em; 6 | color: #fff; 7 | justify-content: space-between; 8 | align-items: center; 9 | padding: 2em; 10 | background: rgba(0, 0, 0, 0.76); 11 | } 12 | 13 | .header h1 { 14 | font-family: cursive; 15 | font-weight: 400; 16 | font-size: 1.8em; 17 | } 18 | 19 | .header .logo { 20 | /* width: 100%; */ 21 | height: 5em; 22 | width: 10em; 23 | padding-bottom: 1em; 24 | } 25 | 26 | @media (min-width: 600px) { 27 | .header { 28 | height: 5em; 29 | flex-direction: row; 30 | align-items: center; 31 | padding: 1em; 32 | } 33 | .header .logo { 34 | height: 4em; 35 | width: 9em; 36 | } 37 | .header h1 { 38 | font-size: 1.2em; 39 | } 40 | } 41 | 42 | @media (min-width: 800px) { 43 | .header { 44 | padding: 2em; 45 | } 46 | .header h1 { 47 | font-size: 1.6em; 48 | } 49 | } 50 | 51 | .header .logo img { 52 | width: 100%; 53 | height: 100%; 54 | object-fit: contain; 55 | } 56 | 57 | .header input { 58 | height: 50%; 59 | padding: 1em; 60 | border: none; 61 | /* border-radius: 10px; */ 62 | background: none; 63 | border-bottom: 1px solid #fff; 64 | color: #fff; 65 | } 66 | 67 | .header input::placeholder { 68 | color: #fff; 69 | } 70 | 71 | .search { 72 | display: flex; 73 | align-items: center; 74 | justify-content: space-around; 75 | } 76 | 77 | .icon { 78 | color: #fff; 79 | cursor: pointer; 80 | height: 100%; 81 | } 82 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hall of Techies 👩🏼‍💻🧑🏼‍💻 2 | 3 | An initiative by **[AWS UG Jaipur - Rajasthan](https://www.youtube.com/c/awsusergroupjaipurrajasthan)** for developers around the globe to showcase, and add their profile on an open platform and for beginners who wants make their first open source contribution. 4 | 5 | Link to the [website](https://awsugjaipur-halloftechies.web.app/). 6 | 7 | ## How to make a pull request? 8 | 9 | 1. Fork this repository 10 | 11 | 2. To add your name to the list, go to **src/upload folder/data.js**, then fill it up with following content and append it at the end of last entry. 12 | **Don't remove and manipulate previous entry**. 13 | 14 | ``` 15 | { 16 | name: "YOUR NAME", 17 | role: "YOUR ROLE", 18 | image: "GITHUB PROFILE IMAGE LINK", 19 | skills: ['js', 'react', 'node', 'react native'], 20 | link: [ 21 | "https://github.com/GITHUB_USERNAME", 22 | "https://linkedin.com/in/LINKEDIN_USERNAME", 23 | "https://twitter.com/TWITTER_USERNAME", 24 | ], 25 | } 26 | 27 | ``` 28 | 29 | **If you do not want to fill some of the fields, leave them blank**. 30 | Your pull request will only be accepted if it follows the example above. It cannot have anything else. 31 | Please submit a Pull Request to be added to this list. 32 | 33 | ## How to add profile image to Hall of Techies profile using Github avatars? 34 | 35 | - Go to your profile on GitHub.com 36 | Append to your GitHub Profile URL “.png”, so it will look like this: 37 | https://github.com/seema1711.png 38 | 39 | - Just copy the URL will look like this, it look like this: https://avatars.githubusercontent.com/u/48756444?v=4 40 | 41 | 42 | ### Resources 43 | 44 | Pagination and Icons have been sourced from [Material UI](https://material-ui.com/) 45 | -------------------------------------------------------------------------------- /src/Components/Home.js: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect } from "react"; 2 | import Header from "./Header/Header"; 3 | import Card from "./../UI/Card/Card"; 4 | import classes from "./Home.module.css"; 5 | import Pagination from "@material-ui/lab/Pagination"; 6 | import data from "../upload/data"; 7 | 8 | export default function Home() { 9 | const [pageNo, setPageNo] = useState(1); 10 | const [dataArr, setDataArr] = useState([]); 11 | let pageSize = 6; 12 | 13 | useEffect(() => { 14 | let newArr = data.slice((pageNo - 1) * pageSize, pageNo * pageSize); 15 | setDataArr(newArr); 16 | }, [pageNo, pageSize]); 17 | 18 | const searchHandler = (input) => { 19 | const newArr = []; 20 | data.forEach((el) => { 21 | if (el.name?.toLowerCase().startsWith(input.toLowerCase())) { 22 | newArr.push(el); 23 | } 24 | }); 25 | setDataArr(newArr); 26 | }; 27 | 28 | const showData = () => { 29 | if (dataArr.length < 1) { 30 | return

No Data Found

; 31 | } 32 | return dataArr.map((el) => ( 33 | 37 | )); 38 | }; 39 | 40 | const paginationHandler = (e, p) => { 41 | setPageNo(p); 42 | }; 43 | 44 | return ( 45 |
46 |
47 |
{showData()}
48 |
49 | 56 |
57 |
58 | ); 59 | } 60 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 | Hall Of Techies 28 | 29 | 30 | 31 |
32 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /src/UI/Card/Card.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import classes from "./Card.module.css"; 3 | import LinkedInIcon from "@material-ui/icons/LinkedIn"; 4 | import TwitterIcon from "@material-ui/icons/Twitter"; 5 | import GitHubIcon from "@material-ui/icons/GitHub"; 6 | 7 | export default function Card(props) { 8 | 9 | // const arr = [] 10 | 11 | 12 | 13 | return ( 14 |
15 | img 16 |
17 |

{props.userData.name}

18 |

{props.userData.role}

19 |
20 |
21 |
22 | {props.userData.skills?.map(el => { 23 | return el.length > 5 ?

24 | {el.substring(0, 5)}... 25 |

:

26 | {el} 27 |

28 | })} 29 |
30 |
31 | 37 | 38 | 39 | 45 | 46 | 47 | 53 | 54 | 55 |
56 |
57 |
58 | ); 59 | } 60 | -------------------------------------------------------------------------------- /src/UI/Card/Card.module.css: -------------------------------------------------------------------------------- 1 | .card { 2 | width: 15em; 3 | height: auto; 4 | padding: 1em; 5 | background: rgba(0, 0, 0, 0.671); 6 | margin: 3em; 7 | /* margin: 1em; */ 8 | display: flex; 9 | flex-direction: column; 10 | justify-content: flex-start; 11 | align-items: center; 12 | color: #fff; 13 | border-radius: 10px; 14 | backdrop-filter: blur(5px); 15 | transition: all 0.4s linear; 16 | /* overflow: auto; */ 17 | } 18 | 19 | .card:hover { 20 | background: rgba(0, 0, 0, 0.808); 21 | backdrop-filter: blur(10px); 22 | } 23 | 24 | .card img { 25 | width: 7em; 26 | height: 7em; 27 | object-fit: cover; 28 | border-radius: 50%; 29 | border: 0.3em solid #fff; 30 | /* background-image: url('./../../upload/image/abc.jpg'); */ 31 | background-position: center; 32 | background-size: cover; 33 | } 34 | 35 | .bottom { 36 | display: flex; 37 | justify-content: space-around; 38 | width: 100%; 39 | align-items: center; 40 | } 41 | 42 | .skills { 43 | width: 80%; 44 | display: grid; 45 | grid-template-columns: 1fr 1fr; 46 | grid-gap: 1em; 47 | text-align: center; 48 | font-size: 0.7em; 49 | } 50 | 51 | .skills > * { 52 | padding: 0.5em; 53 | border: 1px solid #fff; 54 | border-radius: 10px; 55 | text-transform: uppercase; 56 | } 57 | 58 | .details { 59 | text-align: center; 60 | } 61 | .details > * { 62 | margin: 0.5em; 63 | } 64 | 65 | .icons { 66 | display: flex; 67 | flex-direction: column; 68 | justify-content: center; 69 | /* width: 100%; */ 70 | padding-left: 1em; 71 | /* background-color: red; */ 72 | } 73 | 74 | .icons > * { 75 | cursor: pointer; 76 | margin: 0.3em; 77 | border-radius: 50%; 78 | width: 2em; 79 | height: 2em; 80 | display: flex; 81 | justify-content: center; 82 | align-items: center; 83 | } 84 | 85 | .link { 86 | color: #fff; 87 | transition: transform 0.3s linear; 88 | } 89 | 90 | .link:hover { 91 | transition: transform 0.3s linear; 92 | transform: scale(1.2); 93 | } 94 | -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | awsusergroupjaipur.raj@gmail.com. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /src/upload/data.js: -------------------------------------------------------------------------------- 1 | const data = [ 2 | { 3 | name: "Akash Khandelwal", 4 | role: "MERN Stack Developer", 5 | image: "https://avatars.githubusercontent.com/u/56211500?v=4", 6 | skills: ["js", "react", "node", "react native"], 7 | link: [ 8 | "https://github.com/aksh-22", 9 | "https://www.linkedin.com/in/ak2298/", 10 | "https://twitter.com/aksh__22", 11 | ], 12 | }, 13 | { 14 | name: "Mrunank Pawar", 15 | role: "Engineering Student", 16 | image: "https://avatars.githubusercontent.com/u/65391854?v=4", 17 | skills: ['html', 'css', 'AR'], 18 | link: [ 19 | "https://github.com/mrunankpawar", 20 | "https://linkedin.com/in/mrunankpawar", 21 | "https://twitter.com/MrunankPawar", 22 | ], 23 | }, 24 | { 25 | 26 | name: "Aditya Sawant", 27 | role: "Front-End Developer", 28 | image: "https://avatars.githubusercontent.com/u/60505090?s=400&v=4", 29 | skills: ['Java', 'C++', 'Python', 'js', 'react'], 30 | link: [ 31 | "https://github.com/AdityaSawant21", 32 | "https://www.linkedin.com/in/aditya-a-sawant/", 33 | "https://twitter.com/AdityaASawant1", 34 | ], 35 | }, 36 | { 37 | 38 | name: 'Yashi Agarwal', 39 | role: 'Backend Developer', 40 | image: 'https://avatars.githubusercontent.com/u/46988943?v=4', 41 | skills: ['MongoDb', 'node', 'js', 'express', 'AWS'], 42 | link: [ 43 | 'https://github.com/yashi12', 44 | 'https://www.linkedin.com/in/yashi-agarwal-0459b2191/', 45 | 'https://twitter.com/YashiAg09717844', 46 | ], 47 | }, 48 | 49 | { 50 | name: "Ankit Chaudhari", 51 | role: "Full Stack Developer", 52 | image: "https://avatars.githubusercontent.com/u/65450600?v=4", 53 | skills: ["html", "css", "js", "docker"], 54 | link: [ 55 | "https://github.com/Ankit1598", 56 | "https://www.linkedin.com/in/ankit1598/", 57 | "https://twitter.com/Ankit15_", 58 | ], 59 | }, 60 | { 61 | name: "NIDHI CHAURASIA", 62 | role: "CONTENT WRITER || DEVELOPER || COMPETITIVE CODER", 63 | image: "https://avatars.githubusercontent.com/u/77978770?v=4", 64 | skills: ["my sql", "docker", "node", "google cloud"], 65 | link: [ 66 | "https://github.com/NidhiChaurasia", 67 | "https://linkedin.com/in/nidhi-chaurasia-62b0781bb/", 68 | "https://twitter.com/TweedyCharm", 69 | ], 70 | }, 71 | { 72 | name: "jaya", 73 | role: "Tester", 74 | image: "https://avatars.githubusercontent.com/u/69999030?v=4", 75 | skills: ['js', 'react', 'node', 'react native'], 76 | link: [ 77 | "https://github.com/jayalakshmi7599", 78 | "https://www.linkedin.com/in/jaya-lakshmi-697087159/", 79 | "https://twitter.com/Jayalak54621465", 80 | ], 81 | }, 82 | 83 | { 84 | name: "Priyanka Prasad", 85 | role: "Postman Student Expert | Developer", 86 | image: 87 | "https://avatars.githubusercontent.com/u/59612128?s=400&u=508b3cb2b19845ebf3a38aec415d0e455922a816&v=4", 88 | skills: ["html", "css", "js", "docker", "api"], 89 | link: [ 90 | "https://github.com/P-riyanka-prasad", 91 | "https://www.linkedin.com/in/priyanka677/", 92 | "https://twitter.com/Priyank43692137", 93 | ], 94 | }, 95 | { 96 | name: "Aditya Prasad PAnigrahy", 97 | role: "Frontend Developer", 98 | image: "https://avatars.githubusercontent.com/u/57298109?v=4", 99 | skills: ["html", "css", "js", "react"], 100 | link: [ 101 | "https://github.com/aditya687", 102 | "https://www.linkedin.com/in/aditya-panigrahy-59bba8192/", 103 | "https://twitter.com/AdityaP84700564", 104 | ], 105 | }, 106 | { 107 | name: "Mayur Parmar", 108 | role: "CyberSecurity Researcher", 109 | image: 110 | "https://avatars.githubusercontent.com/u/54601394?s=400&u=3b28f47ccba8411ad1284714e569e4c9a8227d93&v=4", 111 | skills: ["python", "penetration testing", "digital forensics"], 112 | link: [ 113 | "https://github.com/th3cyb3rc0p", 114 | "https://www.linkedin.com/in/th3cyb3rc0p/", 115 | "https://twitter.com/th3cyb3rc0p", 116 | ], 117 | }, 118 | { 119 | name: 'Smit Sakariya', 120 | role: 'Blockchain Developer', 121 | image: 122 | 'https://avatars.githubusercontent.com/u/68073132?s=400&u=46977cdd438d6a903d822ca7db2353c640968148&v=4', 123 | skills: ['solidity', 'ethereum', 'web-development'], 124 | link: [ 125 | 'https://github.com/smit-1923', 126 | 'https://www.linkedin.com/in/smitsakariya/', 127 | 'https://twitter.com/SmitSakariya', 128 | ], 129 | }, 130 | { 131 | 132 | name: "Varshil Shah", 133 | role: "Full Stack Developer", 134 | image: "https://avatars.githubusercontent.com/u/22892867?v=4", 135 | skills: ["html", "css", "js", "docker"], 136 | link: [ 137 | "https://github.com/Varshil9", 138 | "https://linkedin.com/in/varshilshah30/", 139 | "https://twitter.com/varshil39", 140 | ], 141 | }, 142 | { 143 | name: "Palash Burad", 144 | role: "Full Stack Developer", 145 | image: "https://avatars.githubusercontent.com/u/36355091?v=4", 146 | skills: ["html", "css", "js", "docker"], 147 | link: [ 148 | "https://github.com/palash9561", 149 | "https://www.linkedin.com/in/palashburad26/", 150 | "https://twitter.com/palashburad26", 151 | ], 152 | }, 153 | { 154 | name: "Vishal Sharma", 155 | role: "Full Stack Developer", 156 | image: "https://avatars.githubusercontent.com/u/60502786?v=4", 157 | skills: ["JS", "Angular", "node", "BootStrap"], 158 | link: [ 159 | "https://github.com/visharma14", 160 | "https://www.linkedin.com/in/visharma14/", 161 | "https://twitter.com/", 162 | ], 163 | }, 164 | 165 | { 166 | name: "Priyanka Banerjee", 167 | role: "Sr Data Scientist", 168 | image: "https://avatars.githubusercontent.com/u/49121592?v=4", 169 | skills: ["Python", "R", "Machine Learning", "Data Analysis", "AutoML"], 170 | link: [ 171 | "https://github.com/Priktopic", 172 | "https://www.linkedin.com/in/priyanka-banerjee-3005/E", 173 | "https://twitter.com/lambda_py", 174 | ], 175 | }, 176 | 177 | { 178 | name: "Sayed Mohd Kazim Mehdi", 179 | role: "Mobile App Developer", 180 | image: 181 | "https://avatars.githubusercontent.com/u/41298650?s=400&u=32a8925dc53191a121b270f1a28df567917f9c23&v=4", 182 | skills: ["Android", "Java", "Kotlin", "Python", "CI/CD"], 183 | 184 | link: [ 185 | "https://github.com/kazimsayed954", 186 | "https://www.linkedin.com/in/kazimsayed/", 187 | "https://twitter.com/kazimsayed954", 188 | ], 189 | }, 190 | 191 | { 192 | name: "Aastha Saxena", 193 | role: "Web Developer", 194 | image: "https://avatars.githubusercontent.com/u/64476429?v=4", 195 | skills: ["C++", "HTML", "CSS", "JS"], 196 | link: [ 197 | "https://github.com/aasthasaxena217", 198 | "https://www.linkedin.com/in/aastha2/", 199 | "https://twitter.com/_AasthaSaxena", 200 | ], 201 | }, 202 | 203 | { 204 | name: "Viral Mamniya", 205 | role: "Software Developer | Future Data Scientist", 206 | image: "https://avatars.githubusercontent.com/u/64903130", 207 | 208 | skills: [ 209 | "php(laravel)", 210 | "js", 211 | "docker", 212 | "kubernetes", 213 | "python", 214 | "api", 215 | "machine learning", 216 | "deep learning", 217 | ], 218 | 219 | link: [ 220 | "https://github.com/VRL2403", 221 | "https://www.linkedin.com/in/viral-mamniya", 222 | ], 223 | }, 224 | 225 | { 226 | name: "Yash Jaiswal", 227 | role: "Computer Engineering Student", 228 | image: "https://avatars.githubusercontent.com/u/67980466?v=4", 229 | skills: ["linux", "networking", "java", "python", "c++"], 230 | link: [ 231 | "https://github.com/bitorsic", 232 | "https://linkedin.com/in/bitorsic", 233 | "https://twitter.com/bitorsic", 234 | ], 235 | }, 236 | 237 | { 238 | name: "Ayush Parikh", 239 | role: "Full Stack Devloper | Content Writer ", 240 | image: "https://avatars.githubusercontent.com/u/60268067?v=4", 241 | skills: ["js", "react", "node", "gcp", "aws", "python"], 242 | link: [ 243 | "https://github.com/Ayushparikh-code", 244 | "https://www.linkedin.com/in/ayush-parikh332/", 245 | "https://twitter.com/ayushparikh5", 246 | ], 247 | }, 248 | 249 | { 250 | name: "Rohan Kumar", 251 | role: "FrontEnd Developer", 252 | image: "https://avatars.githubusercontent.com/u/71714344?v=4", 253 | skills: ["HTML", "Css", "Python", "Js"], 254 | link: [ 255 | "https://github.com/starrohan999", 256 | "https://linkedin.com/in/starrohan999", 257 | "https://twitter.com/RohanKu93825159", 258 | ], 259 | }, 260 | 261 | { 262 | name: "Debarshi Mondal", 263 | role: "Full Stack Developer", 264 | image: "https://avatars.githubusercontent.com/u/52108126?v=4", 265 | skills: ["serverless", "mern", "aws", "container"], 266 | link: [ 267 | "https://github.com/LENO-DEV", 268 | "https://www.linkedin.com/in/debarshi-mondal-developer/", 269 | "https://twitter.com/DebarshiMonda20", 270 | ], 271 | }, 272 | 273 | { 274 | name: "Varghese Jose", 275 | role: "Full Stack Developer", 276 | image: "https://avatars.githubusercontent.com/u/87559397?v=4", 277 | skills: ["HTML", "Js", "CSS", "react native"], 278 | link: [ 279 | "https://github.com/varhacks", 280 | "https://linkedin.com/in/LINKEDIN_USERNAME", 281 | "https://twitter.com/TWITTER_USERNAME", 282 | ], 283 | }, 284 | 285 | 286 | // { 287 | // image: "GITHUB PROFILE IMAGE LINK", 288 | // skills: ["js", "react", "node", "react native"], 289 | // link: [ 290 | // "https://github.com/GITHUB_USERNAME", 291 | // "https://linkedin.com/in/LINKEDIN_USERNAME", 292 | // "https://twitter.com/TWITTER_USERNAME", 293 | // ], 294 | // }, 295 | { 296 | name: "Neelam Upadhyay ", 297 | role: "Full Stack Developer | IT Security | Could Computing ", 298 | image: "https://github.com/nlmupdy01.png", 299 | skills: ["HTML", "CSS", "PHP", " JavaScript" , "c++" , "Linux" , "AWS"], 300 | link: [ 301 | "https://github.com/nlmupdy01", 302 | "https://www.linkedin.com/in/neelam-upadhyay-8736a3115", 303 | "https://twitter.com/nlmupdy", 304 | ], 305 | }, 306 | 307 | { 308 | name: "Neelam Upadhyay ", 309 | role: "Full Stack Developer | IT Security | Could Computing ", 310 | image: "https://github.com/nlmupdy01.png", 311 | skills: ["HTML", "CSS", "PHP", " JavaScript" , "c++" , "Linux" , "AWS"], 312 | link: [ 313 | "https://github.com/nlmupdy01", 314 | "https://www.linkedin.com/in/neelam-upadhyay-8736a3115", 315 | "https://twitter.com/nlmupdy", 316 | ], 317 | }, 318 | 319 | { 320 | name: "Varshil Shah", 321 | role: "Full Stack Developer", 322 | image: "https://avatars.githubusercontent.com/u/22892867?v=4", 323 | skills: ["html", "css", "js", "docker"], 324 | link: [ 325 | "https://github.com/Varshil9", 326 | "https://linkedin.com/in/varshilshah30/", 327 | "https://twitter.com/varshil39", 328 | ], 329 | }, 330 | 331 | { 332 | name: "Phanindra Kumar", 333 | role: "Full Stack Web Developer", 334 | image: "https://github.com/phanindra-max.png", 335 | skills: ["js", "react", "node", "SQL"], 336 | link: [ 337 | "https://github.com/phanindra-max", 338 | "https://linkedin.com/in/phanindra-kumar-kalaga", 339 | "https://twitter.com/Phanind52024538", 340 | ], 341 | }, 342 | 343 | { 344 | name: "Nitesh Thapliyal", 345 | role: "Technical Content Writer | Full Stack Developer", 346 | image: "https://avatars.githubusercontent.com/u/53345517?v=4", 347 | skills: ["DevOps", "Cloud", "Machine Learning", "Deep Learning"], 348 | link: [ 349 | "https://github.com/Nitesh-thapliyal", 350 | "https://linkedin.com/in/nitesh-thapliyal", 351 | "https://twitter.com/Bauddhik_Geek", 352 | ], 353 | }, 354 | 355 | { 356 | name: "Hemanth Raj Naganaboyina", 357 | role: "Application Developer", 358 | image: "https://avatars.githubusercontent.com/u/24850890?v=4", 359 | skills: ["aws", "java", "js", "react", "node"], 360 | link: [ 361 | "https://github.com/hemanthnaganaboyina", 362 | "https://linkedin.com/in/hemanth-r-naganaboyina-2a1383128", 363 | "https://twitter.com/@RajNaganaboyina", 364 | ], 365 | }, 366 | 367 | { 368 | name: "Rohit Sen", 369 | role: "Front-end developer", 370 | image: "rohitsen223.png", 371 | skills: ['HTML', 'CSS', 'JavaScript', 'Python'], 372 | link: [ 373 | "https://github.com/rohitsen223", 374 | "https://www.linkedin.com/in/rohit-sen-30381820b", 375 | "https://twitter.com/RohitSe36744853", 376 | ], 377 | }, 378 | 379 | 380 | 381 | { 382 | name: "Harshit Pandey", 383 | role: "MERN Stack Developer", 384 | image: "https://avatars.githubusercontent.com/u/69616901?s=60&v=4", 385 | skills: ["html", "css", "js", "ReactJS", "NodeJS", "MongoDB"], 386 | link: [ 387 | "https://github.com/HarshitPandey251", 388 | "https://www.linkedin.com/in/harshit-pandey-7ab915176/", 389 | "https://twitter.com/Harshit69219433", 390 | ], 391 | }, 392 | 393 | { 394 | name: "Nishant Rajput", 395 | role: "Technical Content Writer | Linux Enthusiast", 396 | image: "https://avatars.githubusercontent.com/u/37553710?v=4", 397 | skills: ["Bash", "Python", "Docker", "JS", "React", "API"], 398 | link: [ 399 | "https://github.com/nishant-rajput", 400 | "https://www.linkedin.com/in/nishant-rajput", 401 | "https://twitter.com/nishant_uwu", 402 | ], 403 | }, 404 | 405 | { 406 | name: "Muhammad Sami Khanday", 407 | role: "CS Undergrad", 408 | image: "https://avatars.githubusercontent.com/u/61789670?v=4", 409 | skills: ["devops", "ml", "mlops", "fullstack"], 410 | link: [ 411 | "https://github.com/m-samik", 412 | "https://www.linkedin.com/in/m-samik/", 413 | "https://twitter.com/msamik7", 414 | ], 415 | }, 416 | { 417 | name: "Nishith Patel", 418 | role: "Student", 419 | image: "https://avatars.githubusercontent.com/u/58653204?v=4", 420 | skills: ["js", "react", "ml", "data science", "Tableau"], 421 | link: [ 422 | "https://github.com/Nishith6", 423 | "https://www.linkedin.com/in/nishith-patel-0b2463166/", 424 | "https://twitter.com/Nishith62665915", 425 | ], 426 | }, 427 | { 428 | name: "DEEPAK KUMAR SAH", 429 | role: "APPS DEVELOPER", 430 | image: "https://avatars.githubusercontent.com/u/87613102?v=4", 431 | skills: ["js", "react", "node", "react native"], 432 | link: [ 433 | "https://github.com/GITHUB_USERNAME", 434 | "https://linkedin.com/in/deepakkumarsah", 435 | "https://twitter.com/mrdeepakkrsah", 436 | ], 437 | }, 438 | { 439 | name: "Nehal Jaisalmeria", 440 | role: "Software Developer", 441 | image: "https://avatars.githubusercontent.com/u/32421196?v=4", 442 | skills: ["JavaScript", "Angular", "Node", "Flutter", "iOS"], 443 | link: [ 444 | "https://github.com/nehal076", 445 | "https://linkedin.com/in/nehal076", 446 | "https://twitter.com/nehal076", 447 | ], 448 | }, 449 | { 450 | name: "Manish Kumar Barnwal", 451 | role: "Web Developer", 452 | image: "https://avatars.githubusercontent.com/u/46371923?v=4", 453 | skills: ['HTML', 'CSS', 'js', 'Python'], 454 | link: [ 455 | "https://github.com/imanishbarnwal", 456 | "https://www.linkedin.com/in/imanishbarnwal", 457 | "https://twitter.com/imanishbarnwal", 458 | ] 459 | }, 460 | { 461 | name: "Anupam Haldkar", 462 | role: "Tech Dev", 463 | image: "https://avatars.githubusercontent.com/u/48323127?v=4", 464 | skills: ['Spring', 'MongoDB', 'js', 'flask'], 465 | link: [ 466 | "https://github.com/anupamhaldkar", 467 | "https://www.linkedin.com/in/ahaldkar/", 468 | "https://twitter.com/AnupamHaldkar", 469 | ], 470 | }, 471 | { 472 | name: "Ankur Dey", 473 | role: "CSE Undergraduate", 474 | image: "https://avatars.githubusercontent.com/u/80063726?v=4", 475 | skills: ['html', 'css', 'js', 'java', 'c++', 'python', 'bash'], 476 | link: [ 477 | "https://github.com/AnkurDey20", 478 | "https://www.linkedin.com/in/ankurdey20/", 479 | "https://twitter.com/the_dottish_boi", 480 | ], 481 | }, 482 | { 483 | name: "Rajshree Nupur", 484 | role: "Frontend Web development", 485 | image: "https://avatars.githubusercontent.com/u/63921042?s=400&u=fea3baa23362b134a8e891d1a4eafb48a243b480&v=4", 486 | skills: ['html', 'css', 'js', 'sql'], 487 | link: [ 488 | "https://github.com/Rajshreenupur", 489 | "https://www.linkedin.com/in/rajshree-nupur-910087183/", 490 | "https://mobile.twitter.com/RajshreeNupur", 491 | ], 492 | }, 493 | 494 | { 495 | name: "Akshat Lakhara", 496 | role: "Electrical undergrad", 497 | image: "https://avatars.githubusercontent.com/u/85992585?v=4", 498 | skills: ['js', 'css', 'html', 'cpp'], 499 | link: [ 500 | "https://github.com/Akshatlakhara", 501 | "https://linkedin.com/in/akshat-lakhara-355064201", 502 | "https://twitter.com/lakhara-akshat", 503 | ], 504 | }, 505 | { 506 | name: "Aditya Prasad Panigrahy", 507 | role: "Frontend Developer", 508 | image: "https://avatars.githubusercontent.com/u/57298109?v=4", 509 | skills: ['html', 'css', 'nodejs', 'reactjs'], 510 | link: [ 511 | "https://github.com/aditya687", 512 | "https://www.linkedin.com/in/aditya-panigrahy-59bba8192/", 513 | "https://twitter.com/AdityaP84700564", 514 | ], 515 | }, 516 | 517 | { 518 | name: "Shashank", 519 | role: "ECE Undergrad", 520 | image: "https://avatars.githubusercontent.com/u/79925129?v=4", 521 | skills: ['HTML5', 'CSS', 'Python', 'Django'], 522 | link: [ 523 | "https://github.com/Shashankkrj", 524 | "https://www.linkedin.com/in/shashank-a12a851a0/", 525 | "https://twitter.com/SHASHAN99905454", 526 | ] 527 | }, 528 | { 529 | name: "Harekrishna Rai", 530 | role: "Cybersecurity Enthusiast", 531 | image: 532 | "https://avatars.githubusercontent.com/u/63994966?s=400&u=2066915121ace8b6a8cd363f56f62d18381add21&v=4", 533 | skills: ["aws", "k8s", "docker", "linux"], 534 | link: [ 535 | "https://github.com/harekrishnarai", 536 | "https://linkedin.com/in/harekrishnarai", 537 | "https://twitter.com/harekrishna_rai", 538 | ], 539 | }, 540 | 541 | { 542 | name: "Samarth Agarwal", 543 | role: "Software Developer", 544 | image: "https://avatars.githubusercontent.com/u/44058680?v=4", 545 | skills: ["Java", "Python", "Cloud Technologies", "RestAPIs"], 546 | link: [ 547 | "https://github.com/Thecapable", 548 | "https://www.linkedin.com/in/samarth-agarwal-6b9204171/", 549 | "https://twitter.com/The_Capable1", 550 | ], 551 | }, 552 | 553 | { 554 | name: "Ankit Banerjee", 555 | role: "Full Stack Developer", 556 | image: "https://avatars.githubusercontent.com/u/63962369?v=4", 557 | skills: ["js", "react", "HTML", "CSS", "NodeJS"], 558 | link: [ 559 | "https://github.com/ankitbanerjee0211", 560 | "https://www.linkedin.com/in/ankit-banerjee-0211/", 561 | "https://twitter.com/AnkitBan0211", 562 | ], 563 | }, 564 | 565 | { 566 | name: "Ankit Ranjan", 567 | role: "SDE", 568 | image: "https://avatars.githubusercontent.com/u/64700993?v=4", 569 | skills: ["Python", "Data Structure", "AWS", "GCP"], 570 | link: [ 571 | "https://github.com/ankitranjan9", 572 | "https://www.linkedin.com/in/ankitranjann/", 573 | "https://twitter.com/ankitranjan9", 574 | ], 575 | }, 576 | 577 | { 578 | name: "Anisha Shukla", 579 | role: "Undergrad Student", 580 | image: "https://avatars.githubusercontent.com/u/66470180?s=400&v=4", 581 | }, 582 | 583 | { 584 | name: "Mayank Kumar Chaudhari", 585 | role: "Front End Engineer", 586 | image: "https://avatars.githubusercontent.com/u/25501269?v=4", 587 | skills: [ 588 | "js", 589 | "vue.js", 590 | "nuxt.js", 591 | "react", 592 | "Next.js", 593 | "node", 594 | "react native", 595 | "Java", 596 | "Android", 597 | "kubernetes", 598 | "AWS", 599 | "Azure", 600 | "GCP", 601 | "Lambda", 602 | "Lex", 603 | "AWS Connect", 604 | "S3", 605 | ], 606 | link: [ 607 | "https://github.com/mayank1513", 608 | "https://linkedin.com/in/mayank-chaudhari", 609 | ], 610 | }, 611 | 612 | { 613 | name: "Anisha Shukla", 614 | role: "Undergrad Student", 615 | image: "https://avatars.githubusercontent.com/u/66470180?s=400&v=4", 616 | skills: ["cloud computing", "cyber security", "django", "gcp"], 617 | link: [ 618 | "https://github.com/AnishaShukla", 619 | "https://linkedin.com/in/anisha-shukla", 620 | "https://twitter.com/Anisha_Shukla_", 621 | ], 622 | }, 623 | { 624 | name: "Jatin Agarwal", 625 | role: "MERN Stack Developer", 626 | image: "https://github.com/JatinAgarwal-1.png", 627 | skills: ["js", "react", "node", "react native", "MongoDB"], 628 | link: [ 629 | "https://avatars.githubusercontent.com/u/55610764?v=4", 630 | "https://linkedin.com/in/jatinagarwal-aj", 631 | "https://twitter.com/_jatin_agarwal", 632 | ], 633 | }, 634 | { 635 | name: "Aashay Soni", 636 | role: "Diploma IT Student", 637 | image: "https://avatars.githubusercontent.com/u/66527024?v=4", 638 | skills: ["HTML", "Git", "CSS", "Python", "ShellScript", "Bash"], 639 | link: [ 640 | "https://github.com/Aashay-Soni", 641 | "https://linkedin.com/in/aashay-soni-683a94213", 642 | "https://twitter.com/SoniAashay3", 643 | ], 644 | }, 645 | { 646 | name: "Jaskeerat Singh", 647 | role: "IT Undergrad | MERN Stack Developer", 648 | image: "https://avatars.githubusercontent.com/u/64856348?v=4", 649 | skills: [ 650 | "mern stack", 651 | "java", 652 | "cpp", 653 | "python", 654 | "open-source", 655 | "cloud-native", 656 | ], 657 | link: [ 658 | "https://github.com/Jassi10000", 659 | "https://www.linkedin.com/in/jaskeerat-singh-5438531a6/", 660 | "https://twitter.com/Jaskeer56002158", 661 | ], 662 | }, 663 | { 664 | name: "Chandra Mohan", 665 | 666 | role: "CS Undergrad | Fullstack Web Developer", 667 | 668 | image: "https://avatars.githubusercontent.com/u/77689644?v=4", 669 | 670 | skills: ["java", "javascript", "nodejs", "react native"], 671 | 672 | link: [ 673 | "https://github.com/chandramohan0", 674 | 675 | "https://linkedin.com/in/chandramohan01/", 676 | 677 | "https://twitter.com/chandra92017426", 678 | ], 679 | }, 680 | 681 | { 682 | name: "Mahima Goyal", 683 | role: "CS Undergrad | Open Source Contributor", 684 | image: "https://avatars.githubusercontent.com/u/44669552?v=4", 685 | skills: ["js", "react", "angular", "flutter", "asp.net"], 686 | link: [ 687 | "https://github.com/mahimagoyalx", 688 | "https://www.linkedin.com/in/mahimagoyal-/", 689 | "https://twitter.com/mahimagoyalx", 690 | ], 691 | }, 692 | { 693 | name: "Prathamesh Borse", 694 | role: "Exploring Frontend Development, Technical Content Writer", 695 | image: "https://avatars.githubusercontent.com/u/66899360?v=4", 696 | skills: ["html", "css", "java", "Python", "c++"], 697 | link: [ 698 | "https://github.com/prathamesh-borse", 699 | "https://linkedin.com/in/prathamesh-borse", 700 | "https://twitter.com/Dev_Prathamtwt", 701 | ], 702 | }, 703 | { 704 | name: "Bhavik Jikadara", 705 | role: "Python Developer", 706 | image: "https://avatars.githubusercontent.com/u/66177876?v=4", 707 | skills: [ 708 | "Python", 709 | "Data Structure in Python", 710 | "Machine Learning", 711 | "Deep Learning", 712 | "Data Science", 713 | ], 714 | }, 715 | { 716 | name: "Jahanvi Sharma", 717 | role: "Developer", 718 | image: 719 | "https://avatars.githubusercontent.com/u/56484763?s=400&u=2b960213c7167ce8552af8c1a4da5ffb8ab9a53d&v=4", 720 | skills: ["HTML", "PYTHON", "CSS", "UI/UX"], 721 | link: [ 722 | "https://github.com/jahanvisharma-dotcom", 723 | "https://www.linkedin.com/in/jahanvi-sharma-5333a8174/", 724 | "https://twitter.com/jahanvisharma77", 725 | ], 726 | }, 727 | 728 | { 729 | name: "Ayush", 730 | role: "CSE UG Student", 731 | image: 732 | "https://avatars.githubusercontent.com/u/71834130?s=400&u=23f6e38a9b578aed5c7a25250113bc37f971adc6&v=4", 733 | skills: ["Java", "Git", "Android"], 734 | link: [ 735 | "https://github.com/AyusH1912", 736 | "https://linkedin.com/in/ayush19-", 737 | "https://twitter.com/iamayush_7", 738 | ], 739 | }, 740 | { 741 | name: "Yogeshwari Bahiram", 742 | role: "Student", 743 | image: 744 | "https://avatars.githubusercontent.com/u/56786259?s=400&u=4773021624ea7332fbd3e841a78642a34dca598b&v=4", 745 | skills: ["js", "react", "node", "django"], 746 | link: [ 747 | "https://github.com/yogeshwari-20000609", 748 | "https://linkedin.com/in/yogeshwari-bahiram/", 749 | "https://twitter.com//its_gauri_2000", 750 | ], 751 | }, 752 | { 753 | name: "Areti Pavan", 754 | role: "CS Undergrad", 755 | image: "https://avatars.githubusercontent.com/u/62766354?v=4", 756 | skills: ["competetive programming", "web-development"], 757 | link: [ 758 | "https://github.com/pavan-areti", 759 | "https://www.linkedin.com/in/pavan-areti-8907131aa/", 760 | ], 761 | }, 762 | { 763 | name: "Bhavik Jikadara", 764 | role: "Python Developer", 765 | image: "https://avatars.githubusercontent.com/u/66177876?v=4", 766 | skills: [ 767 | "Python", 768 | "Data Structure in Python", 769 | "Machine Learning", 770 | "Deep Learning", 771 | "Data Science", 772 | ], 773 | link: [ 774 | "https://github.com/Bhavik-Jikadara", 775 | "https://www.linkedin.com/in/bhavik-jikadara-612643190", 776 | "https://twitter.com/BhavikJikadara1?s=09", 777 | ], 778 | }, 779 | { 780 | name: "Sangy K", 781 | role: "MERN Stack Developer", 782 | image: "https://avatars.githubusercontent.com/u/3327904?v=4", 783 | skills: ["js", "react", "node", "html5", "css3", "mongodb"], 784 | link: [ 785 | "https://github.com/sansk", 786 | "https://www.linkedin.com/in/sangeetha-kumarasamy/", 787 | "https://twitter.com/sangyk_dev", 788 | ], 789 | }, 790 | { 791 | name: "Milan Rawat", 792 | role: "Student | MERN Stack Developer", 793 | image: "https://avatars.githubusercontent.com/u/75739793?v=4", 794 | skills: ["js", "react", "node", "react native"], 795 | link: [ 796 | "https://github.com/Milan-rawat", 797 | "https://www.linkedin.com/in/milan-rawat", 798 | "https://twitter.com/milan8rawat", 799 | ], 800 | }, 801 | { 802 | name: "Priyanshu Saini", 803 | role: "Ai&Ds Undergraduate", 804 | image: "https://avatars.githubusercontent.com/u/87232292?v=4", 805 | skills: ["C/C++", "HTML", "CSS", "JavaScript", "Python"], 806 | link: [ 807 | "https://github.com/CapNik2002", 808 | "https://linkedin.com/in/priyanshu-saini-6030a51bb", 809 | "https://twitter.com/", 810 | ], 811 | }, 812 | 813 | { 814 | name: "Ankit Mahajan", 815 | role: "Student", 816 | image: "https://avatars.githubusercontent.com/u/69541646?v=4", 817 | skills: ["AWS", "Docker", "DBMS", "Hadoop", "C-Programming", "Python"], 818 | link: [ 819 | "https://github.com/Ankit851", 820 | "https://www.linkedin.com/in/ankit-mahajan-45b79b1a4/", 821 | "https://twitter.com/AnkitMa72507083", 822 | ], 823 | }, 824 | { 825 | name: "Nitish Saini", 826 | role: "Student", 827 | image: "https://avatars.githubusercontent.com/u/39373956?v=4", 828 | skills: ['js', 'react', 'node', 'Blockchain', 'solidity', 'C++', 'python', 'system administrator', 'Mariadb', 'mysql'], 829 | link: [ 830 | "https://github.com/nitishsaini706", 831 | "https://www.linkedin.com/in/nitish-saini-524315197/", 832 | "https://twitter.com/nitishs41097565", 833 | ], 834 | }, 835 | { 836 | name: "Jainish Shah", 837 | role: "Python Developer|Google cloud enthusiast|CS Undergrad", 838 | image: "https://avatars.githubusercontent.com/u/47889375?v=4", 839 | skils: ['Python', 'Java', 'ML', 'API', 'Frontend', 'OpenCV', 'Data Science'], 840 | links: [ 841 | "https://github.com/Jainish-shah", 842 | "https://www.linkedin.com/in/jainish-shah25/", 843 | "https://twitter.com/Jainish_25", 844 | ] 845 | }, 846 | { 847 | name: "Anand Natarajan", 848 | role: "Full-Stack Developer", 849 | image: "https://avatars.githubusercontent.com/u/6303094?v=4", 850 | skills: ['AWS', 'HTML', 'CSS', 'JavaScript', 'Angular'], 851 | link: [ 852 | "https://github.com/anandnat", 853 | "https://www.linkedin.com/in/anandhnat/", 854 | "https://twitter.com/anandnat", 855 | ], 856 | }, 857 | { 858 | name: "suman shah", 859 | role: "student", 860 | image: "https://avatars.githubusercontent.com/u/61034696?v=4", 861 | skills: ['python', 'c', 'c++', 'html'], 862 | link: [ 863 | "https://github.com/suman-shah", 864 | "https://linkedin.com/in/suman-shah/", 865 | "https://twitter.com/shoppingevl", 866 | ], 867 | }, 868 | { 869 | name: "Ashish Soyetra", 870 | role: "Student", 871 | image: "https://avatars.githubusercontent.com/u/53328534?v=4", 872 | skills: ['GCP', 'React', 'Node', 'JavaScript', 'C/C++', 'HTML', 'CSS', 'MySQL'], 873 | link: [ 874 | "https://github.com/ashishsoyetra30", 875 | "https://www.linkedin.com/in/soyetra-ashish/", 876 | "https://twitter.com/SoyetraAshish", 877 | ], 878 | }, 879 | { 880 | name: "Anjali Kundliya", 881 | role: "CS Student", 882 | image: "https://avatars.githubusercontent.com/u/80624328?v=4", 883 | skills: ['C++', 'Python', 'AI', 'Data Science'], 884 | link: [ 885 | "https://github.com/anjali-kundliya05/", 886 | "https://www.linkedin.com/in/anjali-kundliya/", 887 | "https://twitter.com/TWITTER_USERNAME", 888 | ], 889 | }, 890 | { 891 | name: "Shubham Savdekar", 892 | role: "System Administrator", 893 | image: "https://avatars.githubusercontent.com/u/35762637?v=4", 894 | skills: ['AWS', 'IIS', 'Sophos Firewall', 'CentOS', 'Windows Server'], 895 | link: [ 896 | "https://github.com/ShubhamSavdekar", 897 | "https://www.linkedin.com/in/shubhamsavdekar/", 898 | "https://twitter.com/SavdekarShubham", 899 | ], 900 | }, 901 | { 902 | name: "Neha Suryawanshi", 903 | role: "Software Developer | Python Developer | Data Science & Analytics", 904 | image: "https://avatars.githubusercontent.com/u/70685834?v=4", 905 | skills: ['Python', 'Data Science', 'Django', 'AWS', 'ML', 'OpenCV', 'ASP.NET', 'C#', 'HTML', 'CSS'], 906 | link: [ 907 | "https://github.com/nssuryawanshi10", 908 | "https://www.linkedin.com/in/neha-suryawanshi-a331aa161/", 909 | "https://twitter.com/NehaSur00209269", 910 | ], 911 | }, 912 | { 913 | name: "Ankit Raj", 914 | role: "Student", 915 | image: "https://avatars.githubusercontent.com/u/60232414?v=4", 916 | skills: [ 917 | "AWS", 918 | "react", 919 | "node", 920 | "react native", 921 | "python", 922 | "java", 923 | "HTML", 924 | "CSS", 925 | ], 926 | link: [ 927 | "https://github.com/MONTOX123", 928 | "https://linkedin.com/in/ankit-raj-01aa751a0", 929 | "https://twitter.com/@AnkitRa42015278", 930 | ], 931 | }, 932 | { 933 | name: "Pradyumna Shirude", 934 | role: "Front-End Web Developer | Technical Content Writer", 935 | image: "https://avatars.githubusercontent.com/u/55198275?v=4", 936 | skills: ["DS/Algo", "ReactJS", "Python", "MongoDB"], 937 | link: [ 938 | "https://github.com/Patrick360X", 939 | "https://www.linkedin.com/in/pradyumna-shirude/", 940 | "https://twitter.com/Pattrick_8", 941 | ], 942 | }, 943 | { 944 | name: "Akashdeep Gupta", 945 | role: "Information Technology Student | Cloud Enthusiast", 946 | image: "https://avatars.githubusercontent.com/u/61601588?v=4", 947 | skills: [ 948 | "AWS", 949 | "Docker", 950 | "Kubernetes", 951 | "My-Sql", 952 | "Python", 953 | "HTML", 954 | "CSS", 955 | "JS", 956 | "Bash", 957 | "Linux", 958 | ], 959 | link: [ 960 | "https://github.com/Akashdeep-47", 961 | "https://linkedin.com/in/akashdeep-47", 962 | "https://twitter.com/akashdeep_47", 963 | ], 964 | }, 965 | { 966 | name: "Shubham Gupta", 967 | role: "Student", 968 | image: "https://avatars.githubusercontent.com/u/15152368?v=4", 969 | skills: [ 970 | "js", 971 | "react", 972 | "node", 973 | "aws", 974 | "pyhton", 975 | "java", 976 | "git", 977 | "github", 978 | "jenkins", 979 | "jira", 980 | "oracle", 981 | "mysql", 982 | "android studio", 983 | "GoLang", 984 | "react native", 985 | ], 986 | link: [ 987 | "https://github.com/shubhamgupta083", 988 | "https://www.linkedin.com/in/shubham-gupta-1028b3171/", 989 | "https://twitter.com/Shubham32781475", 990 | ], 991 | }, 992 | { 993 | name: "Mohit Agarwal", 994 | role: "Student", 995 | image: "https://avatars.githubusercontent.com/u/48441450?v=4", 996 | skills: ['Js', 'ReactJs', 'NodeJs', 'Php', 'Flutter', 'C++', 'HTML/CSS'], 997 | link: [ 998 | "https://github.com/mohitagarwal1432", 999 | "https://linkedin.com/in/mohitagarwal1432", 1000 | "https://twitter.com/_mohit_agarwal", 1001 | ], 1002 | }, 1003 | { 1004 | name: "Himanshu Verma", 1005 | role: "Student", 1006 | image: "https://avatars.githubusercontent.com/u/72593058?v=4", 1007 | skills: ["Full-Stack Developer", "C++"], 1008 | }, 1009 | { 1010 | name: 'Vimal M', 1011 | role: 'CSE sophomore | DevOps enthusiast', 1012 | image: 'https://avatars.githubusercontent.com/u/76787061?v=4', 1013 | skills: ['Python', 'React', 'Docker', 'Kubernetes', 'cloud'], 1014 | }, 1015 | { 1016 | name: "DEEPAK KUMAR SAH", 1017 | role: "APPS DEVELOPER", 1018 | image: "https://avatars.githubusercontent.com/u/87613102?v=4", 1019 | skills: ["js", "react", "node", "react native"], 1020 | link: [ 1021 | "https://github.com/GITHUB_USERNAME", 1022 | "https://linkedin.com/in/deepakkumarsah", 1023 | "https://twitter.com/mrdeepakkrsah", 1024 | ], 1025 | }, 1026 | { 1027 | name: "Nayan Kamal Verma", 1028 | role: "cs undergraduate", 1029 | image: "https://avatars.githubusercontent.com/u/65735338?v=4", 1030 | skills: ["c/c++", "python", "google_cloud", "Azure", "DBMS"], 1031 | link: [ 1032 | "https://github.com/nayankamalverma", 1033 | "https://www.linkedin.com/in/nayan-verma-a4b9771b5/", 1034 | ], 1035 | }, 1036 | { 1037 | name: "Aditya Srivastava", 1038 | role: "Student", 1039 | image: 1040 | "https://github.com/zxabchttps://avatars.githubusercontent.com/u/72244050?v=4", 1041 | skills: ["css", "html", "python"], 1042 | link: [ 1043 | "https://github.com/Zxabc", 1044 | "https://linkedin.com/", 1045 | "https://twitter.com/@Zxabc3", 1046 | ], 1047 | }, 1048 | { 1049 | name: "Ajit Fawade", 1050 | role: "MERN Stack Developer", 1051 | image: "https://avatars.githubusercontent.com/u/16475300?v=4", 1052 | skills: ["js", "react", "node"], 1053 | link: [ 1054 | "https://github.com/ajitfawade", 1055 | "https://www.linkedin.com/in/ajitfawade/", 1056 | "https://twitter.com/ajitfawade", 1057 | ], 1058 | }, 1059 | { 1060 | name: "Deepak Kumar", 1061 | role: "CSE Student", 1062 | image: "https://avatars.githubusercontent.com/u/78249949?v=4", 1063 | skills: ["html", "css", "js"], 1064 | link: [ 1065 | "https://github.com/DK85690", 1066 | "https://www.linkedin.com/in/deepak-kumar-aba987217/", 1067 | "https://twitter.com/DeepakK12286986", 1068 | ], 1069 | }, 1070 | { 1071 | 1072 | name: "Srijith", 1073 | role: "student", 1074 | image: "https://avatars.githubusercontent.com/u/63923819?v=4", 1075 | skills: ["js", "react", "node", "react native"], 1076 | link: [ 1077 | "https://github.com/GITHUB_Srijith", 1078 | "https://linkedin.com/in/LINKEDIN_Srijith", 1079 | "https://twitter.com/TWITTER_Srijith", 1080 | ], 1081 | }, 1082 | { 1083 | name: "Vimal M", 1084 | role: "CSE sophomore | DevOps enthusiast", 1085 | image: "https://avatars.githubusercontent.com/u/76787061?v=4", 1086 | skills: ["Python", "React", "Docker", "Kubernetes", "cloud"], 1087 | link: [ 1088 | "https://github.com/vimalprogrammer", 1089 | "https://www.linkedin.com/in/vimalprogrammer/", 1090 | "https://twitter.com/Vimal46701132", 1091 | ], 1092 | }, 1093 | { 1094 | name: "Archit Garg", 1095 | role: "Web Developer", 1096 | image: "https://avatars.githubusercontent.com/u/57831888?v=4", 1097 | skills: ["Javascript", "React", "Node", "Redux", "Express"], 1098 | link: [ 1099 | "https://github.com/architgarg603", 1100 | "https://www.linkedin.com/in/architgarg603/", 1101 | "", 1102 | ], 1103 | }, 1104 | { 1105 | name: "Himanshu Verma", 1106 | role: "Student", 1107 | image: "https://avatars.githubusercontent.com/u/72593058?v=4", 1108 | skills: ["Full-Stack Developer", "C++"], 1109 | link: [ 1110 | "https://github.com/hv65616", 1111 | "https://www.linkedin.com/in/himanshu-verma-94a1a41b8/", 1112 | "https://twitter.com/beWho_U_R", 1113 | ], 1114 | }, 1115 | { 1116 | name: "Aayush Pandey", 1117 | role: "CS Undergrad & ML Enthusiast", 1118 | image: "https://avatars.githubusercontent.com/u/72926955?s=400&v=4", 1119 | skills: ["Python", "C", "ML", "Java", "HTML", "CSS", "JS"], 1120 | link: [ 1121 | "https://github.com/aayushai", 1122 | "https://www.linkedin.com/in/aayushpandey/", 1123 | "https://twitter.com/ShiroPanda__", 1124 | ], 1125 | }, 1126 | { 1127 | name: "YOGESH JHA", 1128 | role: "STUDENT", 1129 | image: "GITHUB PROFILE IMAGE LINK", 1130 | skills: ["js", "EXPRESS", "node", "CSS"], 1131 | link: [ 1132 | "https://github.com/hound77", 1133 | "https://www.linkedin.com/in/yogesh-jha-8b5160170/", 1134 | "https://twitter.com/77_hound", 1135 | ], 1136 | }, 1137 | { 1138 | name: "AAMIR RAZDAN", 1139 | role: "STUDENT", 1140 | image: "https://avatars.githubusercontent.com/u/65817609?v=4", 1141 | skills: ['javascript', 'html', 'css', 'pyhton'], 1142 | link: [ 1143 | "https://github.com/Aamir-Razdan", 1144 | "https://linkedin.com/in/aamir-razdan", 1145 | "https://twitter.com/AamirRazdan", 1146 | ], 1147 | }, 1148 | { 1149 | name: "Siva Sankar Chandu", 1150 | role: "Fresher | AWS Intern", 1151 | image: "https://avatars.githubusercontent.com/u/57555760?v=4", 1152 | skills: ['AWS', 'Python', 'Git', 'Packer', 'Linux'], 1153 | link: [ 1154 | "https://github.com/SivaSankarChandu", 1155 | "https://www.linkedin.com/in/chandusivasankar/", 1156 | "https://twitter.com/sivasankarchand/", 1157 | ] 1158 | }, 1159 | { 1160 | name: "Digant Prajapati", 1161 | role: "Security Reseacher", 1162 | image: "https://avatars.githubusercontent.com/u/58943360?v=4", 1163 | skills: ['Linux', 'VAPT', 'JAVA', 'Python', 'HTML'], 1164 | link: [ 1165 | "https://github.com/invincible-9", 1166 | "https://linkedin.com/in/digant-prajapati", 1167 | "https://twitter.com/_invincible9", 1168 | ], 1169 | }, 1170 | { 1171 | name: "ASTITVA BINDAL", 1172 | role: "STUDENT", 1173 | image: "https://avatars.githubusercontent.com/u/62743134?v=4", 1174 | skills: ['js', 'html', 'c++', 'python'], 1175 | link: [ 1176 | "https://github.com/astitvabindal", 1177 | "https://linkedin.com/in/astitva-bindal", 1178 | "https://twitter.com/astitva_bindal", 1179 | ], 1180 | }, 1181 | { 1182 | name: "LOKESH GAWANDE", 1183 | role: "STUDENT", 1184 | image: "https://avatars.githubusercontent.com/u/83236804?v=4", 1185 | skills: ['C++', 'HTML', 'CSS', 'JavaScript', 'Python'], 1186 | link: [ 1187 | "https://github.com/lokesh21012002", 1188 | "https://www.linkedin.com/in/lokesh-gawande-92692a1b2/", 1189 | "https://mobile.twitter.com/Lokeshgawande7", 1190 | ], 1191 | }, 1192 | { 1193 | name: "koushik mondal", 1194 | role: "Student", 1195 | image: "https://avatars.githubusercontent.com/u/84120351?v=4", 1196 | skills: ["c++", "DBMS", "Python"], 1197 | }, 1198 | { 1199 | name: "Ayush Mishra", 1200 | role: "B.Tech CSE Student at Dronacharya Group of Institutions", 1201 | image: "https://avatars.githubusercontent.com/u/84743134?v=4", 1202 | skills: ["html", "css", "C++", "C", "python", "js", "react", "node", "react native"], 1203 | link: [ 1204 | "https://github.com/ayuush13", 1205 | "https://www.linkedin.com/in/ayush-mishra-7137051b4/", 1206 | "https://twitter.com/ayush_mishra_24", 1207 | ], 1208 | }, 1209 | { 1210 | name: "Varad Patil", 1211 | role: "CS Undergrad", 1212 | image: "https://avatars.githubusercontent.com/u/47272906?v=4", 1213 | skills: [ 1214 | "python", 1215 | "c++", 1216 | "react", 1217 | "js", 1218 | "node", 1219 | "express", 1220 | "docker", 1221 | "java", 1222 | ], 1223 | link: [ 1224 | "https://github.com/varadp2000", 1225 | "https://www.linkedin.com/in/varad-patil-0a3b4b169/", 1226 | "https://twitter.com/VaradPa49468565", 1227 | ], 1228 | }, 1229 | { 1230 | name: "Samyak Singh", 1231 | role: "CS Undergrad | Android Developer", 1232 | image: "https://avatars.githubusercontent.com/u/54956876?v=4", 1233 | skills: ["Android", "Flutter", "Kotlin", "C++", "Java"], 1234 | link: [ 1235 | "https://github.com/SAMYAK99", 1236 | "https://www.linkedin.com/in/samyak-singh-007abc/", 1237 | "https://twitter.com/SamyakSingh18", 1238 | ], 1239 | }, 1240 | { 1241 | name: "Palak Singhania", 1242 | role: "Developer | Cloud Enthusiast", 1243 | image: "https://avatars.githubusercontent.com/u/67850145?v=4", 1244 | skills: ["AWS", "Flutter", "Java", "React Native", "HTML", "CSS", "JS"], 1245 | link: [ 1246 | "https://github.com/palaksinghania05", 1247 | "https://linkedin.com/in/palak-s-837b1519b/", 1248 | "https://twitter.com/ThisIs_Palak", 1249 | ], 1250 | }, 1251 | { 1252 | name: "Balasubramanian T K", 1253 | role: "IT Undergraduate | Software development enthusiast", 1254 | image: "https://avatars.githubusercontent.com/u/47392334?v=4", 1255 | skills: ["C/CPP, Py3, ES8, React.JS, Firebase, AWS"], 1256 | link: [ 1257 | "https://github.com/btkcodedev", 1258 | "https://www.linkedin.com/in/b-t-k/", 1259 | "https://twitter.com/ibala_tk", 1260 | ], 1261 | }, 1262 | { 1263 | name: "Mayonk Kumar Behera", 1264 | role: "Web Developer | React mobile app developer", 1265 | image: "https://avatars.githubusercontent.com/u/54724381?v=4", 1266 | skills: ["js", "react", "react native", "flask"], 1267 | link: [ 1268 | "https://github.com/mayonk-kumar-git", 1269 | "https://www.linkedin.com/in/mayonk-kumar/", 1270 | "https://twitter.com/_mayank_kumar__", 1271 | ], 1272 | }, 1273 | { 1274 | name: "Bhumi Rana", 1275 | role: "btech CSE student", 1276 | image: "https://avatars.githubusercontent.com/u/87715249?v=4", 1277 | skills: ['CSS', 'C', 'node', 'html'], 1278 | link: [ 1279 | "https://github.com/bhumirana15", 1280 | "https://linkedin.com/in/LINKEDIN_USERNAME", 1281 | "https://twitter.com/bhumirana14", 1282 | ], 1283 | }, 1284 | { 1285 | 1286 | 1287 | name: "Tanjim Shah Kabir", 1288 | role: "Ethical Hacker", 1289 | image: "https://avatars.githubusercontent.com/u/87455494?s=400&u=1ea2194010240c055eddbe4f21318dc6ca247139&v=4", 1290 | skills: ['js', 'react', 'node', 'react native'], 1291 | link: [ 1292 | "https://github.com/trinob2006", 1293 | "https://www.linkedin.com/in/tanjim-shah-kabir-trinob-8a040820b/", 1294 | "https://www.instagram.com/trinob_shah/", 1295 | ], 1296 | }, 1297 | { 1298 | name: "V.Chandra Shekhar", 1299 | role: "Full Stack Developer|Cloud Enthusiast|AI-ML Enthusiast", 1300 | image: "https://avatars.githubusercontent.com/u/13059783?v=4", 1301 | skills: ['js', 'Python', 'SQL', 'Excel', 'C#', 'Core Java'], 1302 | link: [ 1303 | "https://github.com/vcs200831", 1304 | "https://www.linkedin.com/in/v-chandra-shekhar-4a233140/", 1305 | "https://twitter.com/vchandrashekhar", 1306 | ], 1307 | }, 1308 | { 1309 | name: "Hemant Kumar Singh", 1310 | role: "Web Developer | React mobile app developer", 1311 | image: "https://avatars.githubusercontent.com/u/73472506?s=400&u=a270e3b7ebdb3a2596bebb19011cd87d05990913&v=4", 1312 | skills: ['c', 'c++', 'python', 'java script'], 1313 | link: [ 1314 | "https://github.com/hemant11ks", 1315 | "https://www.linkedin.com/in/hemant-kumar-singh-singh-15216204/", 1316 | "https://twitter.com/HemantK01618866", 1317 | ], 1318 | }, 1319 | { 1320 | 1321 | name: "Jones Zachariah Noel N", 1322 | role: "Cloud Architect - Serverless", 1323 | image: "https://avatars.githubusercontent.com/u/12515425?v=4", 1324 | skills: ['js', 'VueJS', 'NodeJS', 'AWS', 'ReactJS', 'Serverless', 'Web Application Development'], 1325 | link: [ 1326 | "https://github.com/zachjonesnoel", 1327 | "https://www.linkedin.com/in/jones-zachariah-noel-n", 1328 | "https://twitter.com/ZachjNOEL", 1329 | "https://dev.to/zachjonesnoel", 1330 | "https://zachjonesnoel.com" 1331 | ], 1332 | }, 1333 | { 1334 | name: "Kunal Virdi", 1335 | role: "Web Developer | CS Undergrad", 1336 | image: "https://avatars.githubusercontent.com/u/71556630?v=4", 1337 | skills: ['ReactJS', 'Java', 'Python', 'DSA'], 1338 | link: [ 1339 | "https://github.com/mrkunal7", 1340 | "https://www.linkedin.com/in/kunal-virdi-b51a431b2/", 1341 | "https://twitter.com/KunalVirdi07", 1342 | ], 1343 | }, 1344 | { 1345 | name: "Amit Kumar", 1346 | role: "Web Developer", 1347 | image: "https://avatars.githubusercontent.com/u/54941979?v=4", 1348 | skills: ['c', 'python', 'react', 'git'], 1349 | link: [ 1350 | "https://github.com/amitkrraj", 1351 | "https://linkedin.com/in/amitkrraj", 1352 | "https://twitter.com/amitkrraj", 1353 | ], 1354 | }, 1355 | { 1356 | name: "Aritra Sen", 1357 | role: "CSE Undergraduate at Government College of Engineering and Leather Technology | Web Developer | ML enthusiast", 1358 | image: "https://avatars.githubusercontent.com/u/71816694?v=4", 1359 | skills: ['python', 'html', 'css', 'java', 'c++', 'c', 'bootstrap', 'express', 'mongodb', 'sql', 'opencv', 'numpy', 'pandas', 'js', 'react', 'node', 'react native'], 1360 | link: [ 1361 | "https://github.com/aritrasen12345", 1362 | "https://www.linkedin.com/in/aritra-sen-0b8464202/", 1363 | "https://twitter.com/AritraS81007757", 1364 | ] 1365 | }, 1366 | { 1367 | name: "Chandu Vadde", 1368 | 1369 | role: "Computer Science Engineering Student", 1370 | 1371 | image: "https://avatars.githubusercontent.com/u/62535597?v=4", 1372 | 1373 | skills: ['html', 'css', 'js', 'ml', 'python'], 1374 | 1375 | link: [ 1376 | 1377 | "https://github.com/Chandu2000", 1378 | 1379 | "https://www.linkedin.com/in/chandu-vadde-065019193", 1380 | 1381 | "https://twitter.com/ChanduVadde4?s=09", 1382 | 1383 | ], 1384 | }, 1385 | { 1386 | name: "Yudhajit Sinha", 1387 | role: "CS Undergrad", 1388 | image: "https://avatars.githubusercontent.com/u/17973367?v=4", 1389 | skills: ["js", "angular", "react", "electron", ".NET"], 1390 | link: [ 1391 | "https://github.com/lord-haji", 1392 | "https://www.linkedin.com/in/yudhajit-sinha-a6729a211/", 1393 | "https://twitter.com/lord-haji", 1394 | ], 1395 | }, 1396 | { 1397 | name: "Siddhant Pradhan", 1398 | role: "Working Professional at TCS", 1399 | image: "https://avatars.githubusercontent.com/u/48193075?v=4", 1400 | skills: ['js', 'Django', 'Cloud Computing', 'python', 'Data Science & Business Analytics', 'Digital Marketing'], 1401 | link: [ 1402 | "https://github.com/siddhant2202", 1403 | "https://www.linkedin.com/in/siddhant-pradhan-613a141a5/", 1404 | "https://twitter.com/Siddhan24486358", 1405 | ], 1406 | }, 1407 | { 1408 | name: "koushik Mondal", 1409 | role: "BCA Student", 1410 | image: "https://avatars.githubusercontent.com/u/84120351?v=4", 1411 | skills: ["C", "C++", "Python", "DBMS"], 1412 | link: [ 1413 | "https://github.com/koushikm8926", 1414 | "https://linkedin.com/in/koushik-mondal-091102207/", 1415 | "https://twitter.com/koushik47515934", 1416 | ], 1417 | }, 1418 | { 1419 | name: "Shreyansh Parashar", 1420 | role: "Full Stack Developer", 1421 | image: "https://avatars.githubusercontent.com/u/62754950?v=4", 1422 | skills: ["js", "react", "Docker", "Firebase"], 1423 | link: [ 1424 | "https://github.com/shreyanshparashar", 1425 | "https://www.linkedin.com/in/shreyanshparashar/", 1426 | "https://twitter.com/shreyanshz", 1427 | ], 1428 | }, 1429 | { 1430 | name: "Divya Jain", 1431 | role: "Cse Undergrad", 1432 | image: 1433 | "https://avatars.githubusercontent.com/u/60807380?s=400&u=48ada6cf586b802ac17d90054689ebe8f3664f09&v=4K", 1434 | skills: ["Python", "Mlops", "ML", "DevOps"], 1435 | link: [ 1436 | "https://github.com/Divya-2001", 1437 | "https://www.linkedin.com/in/divya-jainn/", 1438 | " https://twitter.com/Divya82248572?s=08", 1439 | ], 1440 | }, 1441 | { 1442 | 1443 | name: "Chitresh Sharma", 1444 | role: "Consulting Enginner", 1445 | image: "https://avatars.githubusercontent.com/u/87748109?v=4", 1446 | skills: ['docker', 'cloud', 'node', 'react native', 'kubernetes'], 1447 | link: [ 1448 | "https://github.com/chitresh1986", 1449 | "https://www.linkedin.com/in/chitresh-sharma-18899431/", 1450 | "https://twitter.com/e026edeba618458", 1451 | ], 1452 | }, 1453 | 1454 | { 1455 | name: "Ujjwal Srivastav", 1456 | role: "CS Undergraud", 1457 | image: "https://avatars.githubusercontent.com/u/87747687?v=4", 1458 | skills: ['js', 'Html', 'C', 'Python'], 1459 | link: [ 1460 | "https://github.com/ujjwalsrivastav", 1461 | "https://www.linkedin.com/in/ujjwal-srivastava-456204206/", 1462 | "https://twitter.com/TWITTER_USERNAME", 1463 | ], 1464 | }, 1465 | { 1466 | name: "Ashish Patwal", 1467 | role: "Opensource Enthusiast", 1468 | image: "https://avatars.githubusercontent.com/u/63491234?v=4", 1469 | skills: ['Python', 'C++', 'JavaScript/Typescript', 'DevOps', 'Web Development', 'shell', 'Linux'], 1470 | link: [ 1471 | "https://github.com/ashish-patwal", 1472 | "https://www.linkedin.com/in/ashish-patwal-6bb671190", 1473 | ], 1474 | }, 1475 | 1476 | { 1477 | name: "Saurav kumar", 1478 | role: "B.Tech CSE Student at Lovely professional university", 1479 | image: "https://avatars.githubusercontent.com/u/87579538?v=4", 1480 | skills: ['C', 'C++', 'Python'], 1481 | link: [ 1482 | "https://github.com/saurav9283", 1483 | "https://www.linkedin.com/feed/", 1484 | "https://twitter.com/home?lang=en", 1485 | ], 1486 | 1487 | 1488 | }, 1489 | { 1490 | name: "Sudeeksha Nayak", 1491 | role: "Web developer", 1492 | image: "https://avatars.githubusercontent.com/u/65765077?v=4", 1493 | skills: ['js', 'react', 'node', 'python', 'html/css', 'mongodb', 'java', 'c'], 1494 | link: [ 1495 | "https://github.com/sudeeksha19", 1496 | "https://www.linkedin.com/in/sudeekshanayak19/", 1497 | "https://twitter.com/SudeekshaNayak", 1498 | ], 1499 | }, 1500 | 1501 | { 1502 | name: "Shubham Kumar Singh", 1503 | role: "Developer", 1504 | image: "https://avatars.githubusercontent.com/u/61842432?s=400&u=727b4b64607a3613cda001b45521ba90ee5fced6&v=4", 1505 | skills: ['HTML', 'JAVA', 'CSS', 'UI/UX'], 1506 | link: [ 1507 | "https://github.com/NightWalker110", 1508 | "https://www.linkedin.com/in/-shubham-kumar-singh/", 1509 | "https://twitter.com/ShubhamkSingh77", 1510 | ], 1511 | }, 1512 | { 1513 | name: "Shashwat Singh", 1514 | role: "DevOps Intern | CSE Undergrad", 1515 | image: "https://avatars.githubusercontent.com/u/55051478?v=4", 1516 | skills: [ 1517 | 'DevOps-Tools', 1518 | 'AWS-Cloud', 1519 | 'MLOPS', 1520 | 'CCNA-Networking', 1521 | 'Flutter' 1522 | ], 1523 | link: [ 1524 | "https://github.com/Shashwatsingh22", 1525 | "https://linkedin.com/in/shashwatsing/", 1526 | "https://twitter.com/TWITTER_USERNAME", 1527 | ], 1528 | }, 1529 | { 1530 | name: "Aastha Awasthi", 1531 | role: "B.Tech Information Technology Student ", 1532 | image: "https://avatars.githubusercontent.com/u/71832274?v=4", 1533 | skills: ['Python', 'DBMS', 'DSA', 'CPP'], 1534 | link: [ 1535 | "https://github.com/Aasthaawasthi0807", 1536 | "https://linkedin.com/in/aastha-awasthi-62b9021aa", 1537 | "https://twitter.com/Aastha Awasthi", 1538 | ], 1539 | }, 1540 | { 1541 | 1542 | 1543 | name: "Abhijeet Chimankar", 1544 | role: "Full Stack Developer", 1545 | image: "https://avatars.githubusercontent.com/u/6971741?v=4", 1546 | skills: ['Python', 'SQL', 'js', 'react', 'react native'], 1547 | link: [ 1548 | "https://github.com/abhijeet834u", 1549 | "https://linkedin.com/in/abhijeetchimankar", 1550 | "https://twitter.com/abhijeet834u", 1551 | ], 1552 | }, 1553 | { 1554 | name: "Vyshak Puthusseri", 1555 | role: "Developer", 1556 | image: "https://avatars.githubusercontent.com/u/33171828?v=4", 1557 | skills: ['python', 'flask', 'deep learning', 'react', 'node'], 1558 | link: [ 1559 | "https://github.com/puthusseri/", 1560 | "https://www.linkedin.com/in/vyshakputhusseri/", 1561 | "https://twitter.com/puthusseris", 1562 | ], 1563 | }, 1564 | 1565 | { 1566 | name: "Abhiroop Basak", 1567 | role: "IT Undergrad", 1568 | image: "https://avatars.githubusercontent.com/u/63965017?v=4", 1569 | skills: ['python', 'machine learning', 'image processing', 'django'], 1570 | link: [ 1571 | "https://github.com/abhiroopbasak", 1572 | "https://www.linkedin.com/in/abhiroopbasak/", 1573 | "https://twitter.com/abhiroop_basak", 1574 | ], 1575 | }, 1576 | { 1577 | name: "Kunal Gosavi", 1578 | role: "CSE UG Student", 1579 | image: "https://avatars.githubusercontent.com/u/73009249?v=4", 1580 | skills: ['java', 'AWS', 'js', 'react', 'node', 'react native'], 1581 | link: [ 1582 | "https://github.com/kunalgosavi", 1583 | "www.linkedin.com/in/kunal-gosavi1999", 1584 | "https://twitter.com/KUNAL_GOSAVI_?s=09", 1585 | ], 1586 | }, 1587 | { 1588 | name: "Shashvat Gupta", 1589 | role: "Cloud Automation Engineer", 1590 | image: "https://avatars.githubusercontent.com/u/31903587?v=4", 1591 | skills: ['Jenkins', 'Azure Infrastructure', 'c # MVC Dot Net', 'PostgreSQL', 'SQLServer'], 1592 | link: [ 1593 | "https://github.com/imshashvatgupta", 1594 | "https://linkedin.com/in/imshashvatgupta", 1595 | "https://twitter.com/imshashvatgupta", 1596 | ], 1597 | }, 1598 | 1599 | { 1600 | 1601 | name: "Anushruti", 1602 | role: "Student", 1603 | image: "https://avatars.githubusercontent.com/u/65386044?s=400&u=155957293a524084652b2950f101bd2963407666&v=4", 1604 | skills: ['C', 'C++', 'js', 'react', 'html', 'css'], 1605 | link: [ 1606 | "https://github.com/anushruti11", 1607 | "https://linkedin.com/in/anushruti-shresth-025a481a8/", 1608 | "https://twitter.com/AkritiShresth", 1609 | ], 1610 | }, 1611 | { 1612 | 1613 | name: "Anshumaan Kumar Prasad", 1614 | role: "Junior at Information Technology & Services", 1615 | image: "https://avatars.githubusercontent.com/u/75872316?v=4", 1616 | skills: ['DevOps', 'Open Source', 'Java', 'Spring Boot', 'JS', 'HTML', 'Python', 'Service Mesh', 'Kubernetes', 'Go', 'CI', 'Docker', 'MERN'], 1617 | link: [ 1618 | "https://github.com/amino19", 1619 | "https://www.linkedin.com/in/anshumaan-kumar-prasad-19-amino", 1620 | "https://twitter.com/aminostwt", 1621 | ], 1622 | }, 1623 | { 1624 | name: "Sai Bhargav R", 1625 | role: "Chatbot Developer", 1626 | image: "https://avatars.githubusercontent.com/u/37236514?s=400&v=4", 1627 | skills: ["Node JS", "API", "Python"], 1628 | link: [ 1629 | "https://github.com/RsBhttps://twitter.com/SathwikThadhargav", 1630 | "https://www.linkedin.com/in/sai-bhargav-rallapalli-39110891/", 1631 | "https://twitter.com/rshttps://www.linkedin.com/in/sathwik-reddy-thaduru-1310261b2/_bhargav", 1632 | ], 1633 | }, 1634 | { 1635 | name: "Saran Agarwal", 1636 | role: "CS Undergrad", 1637 | image: "https://avatars.githubusercontent.com/u/60834417?s=400&v=4", 1638 | skills: ["js", "react", "C++", "python"], 1639 | link: [ 1640 | "https://github.com/SaranAgarwal", 1641 | "https://www.linkedin.com/in/saran-agarwal-7a3290190/", 1642 | "https://twitter.com/SaranAgarwal2", 1643 | ], 1644 | }, 1645 | { 1646 | name: "Parul Sahoo", 1647 | role: "CSE undergraduate", 1648 | image: "https://avatars.githubusercontent.com/u/60248260?s=60&v=4", 1649 | skills: ['js', 'MERN', 'Java', 'Docker', 'Kubernetes', 'Sanity Studio', 'GraphQL'], 1650 | link: [ 1651 | "https://github.com/parul5sahoo", 1652 | "https://www.linkedin.com/in/parul-sahoo-4bb8301a0/", 1653 | "https://twitter.com/ParulSahoo", 1654 | ], 1655 | }, 1656 | { 1657 | name: "Ankit Sangwan", 1658 | role: "Flutter Developer", 1659 | image: "https://avatars.githubusercontent.com/u/42967322?v=4", 1660 | skills: ['Dart', 'Python', 'Java', ''], 1661 | link: [ 1662 | "https://github.com/Sangwan5688", 1663 | "https://linkedin.com/in/ankit-sangwan-5789931a3/", 1664 | "https://twitter.com/sangwan5688", 1665 | ], 1666 | }, 1667 | { 1668 | name: "KANAGA SIVESH K S", 1669 | role: "ECE STUDENT", 1670 | image: "https://avatars.githubusercontent.com/u/72315540?v=4", 1671 | skills: ['C', 'C++', 'PYTHON', 'R', 'SQL'], 1672 | link: [ 1673 | "https://github.com/kanagasivesh", 1674 | "https://www.linkedin.com/in/kanaga-sivesh-k-s-41242720a", 1675 | "https://twitter.com/SiveshSk", 1676 | ], 1677 | }, 1678 | { 1679 | name: "SHAIFALI YADAV", 1680 | role: "COMPUTER SCIENCE STUDENT", 1681 | image: "GITHUB PROFILE IMAGE LINK", 1682 | skills: ['js', 'react', 'node', 'react native'], 1683 | link: [ 1684 | "https://github.com/shaifaliyadav0306", 1685 | "https://linkedin.com/in/shaifali-yadav-409358188", 1686 | "https://twitter.com/shaifaliyadav____", 1687 | ], 1688 | }, 1689 | { 1690 | name: "Sushant Gaurav", 1691 | role: "CSE Undergrad", 1692 | image: "https://avatars.githubusercontent.com/u/68695162?v=4", 1693 | skills: ['C/C++', 'Python', 'Data Structures and Algorithms', 'HTML', 'CSS', 'JavaScript', 'LINUX', 'DataBases'], 1694 | link: [ 1695 | "https://github.com/imsushant12", 1696 | "https://linkedin.com/in/sushant-gaurav", 1697 | "https://twitter.com/_im_sushant", 1698 | ], 1699 | }, 1700 | { 1701 | name: "Shashwat Sahu", 1702 | role: "MERN Stack Developer / Cloud Developer", 1703 | image: "https://avatars.githubusercontent.com/u/63558563?v=4", 1704 | skills: ["js", "react", "node", "react native", "GCP", "C++", "Java"], 1705 | link: [ 1706 | "https://github.com/Shashwat-Sahu", 1707 | "https://www.linkedin.com/in/shashwat-sahu-1427501aa/", 1708 | "https://twitter.com/sahu_shashwat", 1709 | ], 1710 | }, 1711 | { 1712 | name: "Vaibhav Meena", 1713 | role: "Mobile App Developer | Flutter Developer", 1714 | image: "https://avatars.githubusercontent.com/u/85748557?v=4", 1715 | skills: ["Flutter", "Dart", "C++", "C", "Python", "Git"], 1716 | link: [ 1717 | "https://github.com/meena103", 1718 | "https://www.linkedin.com/in/vaibhav-meena-41b1961a0/", 1719 | ], 1720 | }, 1721 | { 1722 | name: "Komal Gupta", 1723 | role: "SE-AIML Undergraduate", 1724 | image: "https://avatars.githubusercontent.com/u/74819092?s=400&v=4", 1725 | skills: ['Python', 'C', 'Java', 'HTML', 'CSS'], 1726 | link: [ 1727 | "https://github.com/Komal-99", 1728 | "https://www.linkedin.com/in/komal-gupta-1795b4181/", 1729 | "https://mobile.twitter.com/gkomal_0209", 1730 | ], 1731 | }, 1732 | { 1733 | 1734 | 1735 | name: "Riya Gupta", 1736 | role: "Frontend Developer", 1737 | image: "https://avatars.githubusercontent.com/u/72425181?s=400&u=9e732e1c9ecf6f4b0a0c4ddad76984d506963f60&v=4", 1738 | skills: ['HTML5', 'CSS3', 'JS', 'React', 'NodeJS', 'ExpressJS', 'MongoDB', 'Mongoose', 'C++'], 1739 | link: [ 1740 | "https://github.com/RiyaGupta89", 1741 | "https://www.linkedin.com/in/riyaaa", 1742 | "https://twitter.com/Riya54791008", 1743 | ], 1744 | }, 1745 | { 1746 | 1747 | name: "Prakash Agarwal", 1748 | role: "Student B.Tech(CSE)", 1749 | image: "https://avatars.githubusercontent.com/u/36405534?v=4", 1750 | skills: ['js', 'pyhton', 'AWS', 'GCP', 'Docker', 'Kubernetes', 'Jenkins', 'Terraform', 'Machine Learning'], 1751 | link: [ 1752 | "https://github.com/kruzes1", 1753 | "https://linkedin.com/in/prakashag/", 1754 | "https://twitter.com/Kruzes_", 1755 | ], 1756 | }, 1757 | { 1758 | name: "Shivam Vishwakarma", 1759 | role: "Cloud Engineer", 1760 | image: "https://avatars.githubusercontent.com/u/64523022?v=4", 1761 | skills: ['linux', 'unix', 'cloud', 'aws', 'java', 'python', 'cloud engineering'], 1762 | link: [ 1763 | "https://github.com/svshiva", 1764 | "https://www.linkedin.com/in/shivamvishwakarma/", 1765 | "https://twitter.com/ShivamV97500840", 1766 | ], 1767 | }, 1768 | 1769 | { 1770 | name: "Priyal Jain", 1771 | role: "Frontend Developer", 1772 | image: "https://avatars.githubusercontent.com/u/61619493?v=4", 1773 | skills: ['html', 'css', 'js', 'react'], 1774 | link: [ 1775 | "https://github.com/Priyal056", 1776 | "https://www.linkedin.com/in/priyal-jain-6bb225173/", 1777 | "https://twitter.com/PriyalJ97784324", 1778 | ], 1779 | 1780 | }, 1781 | { 1782 | name: "Sandra Mariyam Jacob", 1783 | role: "CSE Undergrad | Front-end developer", 1784 | image: "https://avatars.githubusercontent.com/u/66560251?v=4", 1785 | skills: ['html', 'css', 'js', 'react'], 1786 | link: [ 1787 | "https://github.com/sandra9711", 1788 | "https://linkedin.com/in/sandra-mariyam-jacob", 1789 | "https://twitter.com/sandra_mariyam", 1790 | ], 1791 | }, 1792 | { 1793 | name: "Swarnadeep Ghosh", 1794 | role: "Front End Developer (Angular)", 1795 | image: "https://avatars.githubusercontent.com/u/60822964?v=4", 1796 | skills: ['Angular', 'Java', 'Python', 'Git', 'AWS', 'Google Cloud'], 1797 | link: [ 1798 | "https://github.com/SwarnadeepGhosh", 1799 | "https://linkedin.com/in/swarnadeepghosh", 1800 | "https://twitter.com/swarnadeep_97", 1801 | ], 1802 | }, 1803 | { 1804 | name: "Sathwik Thaduru", 1805 | role: "CS UG student", 1806 | image: "https://avatars.githubusercontent.com/u/65865881?v=4", 1807 | skills: ["js", "ML", "java", "python"], 1808 | link: [ 1809 | "https://github.com/sathwikreddythaduru", 1810 | "https://www.linkedin.com/in/sathwik-reddy-thaduru-1310261b2/", 1811 | "https://twitter.com/SathwikThad", 1812 | ], 1813 | }, 1814 | { 1815 | name: "LOKESH V", 1816 | role: "AI RESEARCHER", 1817 | image: "https://avatars.githubusercontent.com/u/43855211?s=400&v=4", 1818 | skills: ['js', 'react', 'node', 'react native', 'python', 'java', 'react', 'R'], 1819 | link: [ 1820 | "https://github.com/lokeshvenkatesan", 1821 | "https://linkedin.com/in/lokeshvenk", 1822 | "https://twitter.com/Supreme10014", 1823 | ], 1824 | }, 1825 | { 1826 | name: "Abhijeet Modak", 1827 | role: "Software Engineer", 1828 | image: "https://avatars.githubusercontent.com/u/40936685?v=4", 1829 | skills: ['Python', 'react', 'Django', 'Rest-API', 'Data Warehouse'], 1830 | link: [ 1831 | "https://github.com/abhijeetmodak96", 1832 | "https://www.linkedin.com/in/abhijeet-modak/", 1833 | "https://twitter.com/abhijeetmodak96", 1834 | ], 1835 | }, 1836 | { 1837 | name: "Muthu Annamalai.V", 1838 | role: "CS Undergrad", 1839 | image: "https://avatars.githubusercontent.com/u/64524822?v=4", 1840 | skills: ['HTML', 'CSS', 'js'], 1841 | link: [ 1842 | "https://github.com/muthuannamalai12", 1843 | "https://linkedin.com/in/muthu-annamalai", 1844 | "https://twitter.com/muthuannamalai_", 1845 | ], 1846 | }, 1847 | { 1848 | name: "Sahil Tripathi", 1849 | role: "CS Undergrad", 1850 | image: "https://avatars.githubusercontent.com/u/55251741?v=4", 1851 | skills: ["HTML", "CSS", "Js", "Python", "Flask"], 1852 | link: [ 1853 | "https://github.com/sahil2128", 1854 | "https://www.linkedin.com/in/sahil-tripathi-5852b5184/", 1855 | "https://twitter.com/SahilTr35233930", 1856 | ], 1857 | }, 1858 | { 1859 | name: "Aswin V", 1860 | role: "CS Undergrad", 1861 | image: "https://avatars.githubusercontent.com/u/60834072?v=4", 1862 | skills: ['HTML', 'CSS', 'JS', 'Python'], 1863 | link: [ 1864 | "https://github.com/aswinv266", 1865 | "https://www.linkedin.com/in/aswin-v01/", 1866 | "https://twitter.com/TWITTER_USERNAME", 1867 | ], 1868 | }, 1869 | 1870 | { 1871 | name: "Mihir Jainendra Khandelwal", 1872 | role: "Data Scientist Training", 1873 | image: "https://avatars.githubusercontent.com/mihir-khandelwal", 1874 | skills: ['js', 'reactjs', 'python', 'azure-ai', 'web-development', 'ML', 'AI'], 1875 | link: [ 1876 | "https://github.com/Mihir-Khandelwal", 1877 | "https://www.linkedin.com/in/mihirkhandelwal/", 1878 | "https://twitter.com/JainendraMihir", 1879 | ], 1880 | }, 1881 | { 1882 | name: "Risav Sarkar", 1883 | role: "CSE Undergrad", 1884 | image: "https://avatars.githubusercontent.com/u/70391402?v=4", 1885 | skills: ['Java', 'Javascript', 'Python', 'HTML', 'CSS'], 1886 | link: [ 1887 | "https://github.com/risav-sarkar", 1888 | "https://www.linkedin.com/in/risavsarkar", 1889 | "https://twitter.com/SarkarRisav", 1890 | ], 1891 | }, 1892 | { 1893 | name: "Arsheel Sheikh", 1894 | role: "freshman learning web dev + DSA | opem-source enthusiast", 1895 | image: "https://avatars.githubusercontent.com/u/69401139?v=4", 1896 | skills: ['java', 'html', 'css', 'python'], 1897 | link: [ 1898 | "https://github.com/arsheelsheikh", 1899 | "https://www.linkedin.com/in/arsheel-sheikh-97137b1b3/", 1900 | "https://twitter.com/arsheel_sheikh", 1901 | ], 1902 | }, 1903 | 1904 | { 1905 | name: "Rohit Das", 1906 | role: "Computer Applications Student", 1907 | image: "https://avatars.githubusercontent.com/u/87780528?v=4", 1908 | skills: ['javascript', 'java', 'php.net', 'c#', 'html & css'], 1909 | link: [ 1910 | "https://github.com/rohitdas2k", 1911 | "https://www.linkedin.com/in/rohit-das-901ab4217/", 1912 | "https://twitter.com/RohitDa57102243", 1913 | ], 1914 | }, 1915 | { 1916 | name: "Aditya Kumar", 1917 | role: "Engineering Student", 1918 | image: "https://avatars.githubusercontent.com/u/80571997?v=4", 1919 | skills: ['HTML', 'CSS', 'js', 'react', 'python', 'C++', 'API', 'ML', 'Flask'], 1920 | link: [ 1921 | "https://github.com/AdityaStark7", 1922 | "https://www.linkedin.com/in/aditya-kumar-b53a41203", 1923 | "https://twitter.com/aditya_stark07", 1924 | ], 1925 | }, 1926 | { 1927 | name: "Lokesh Singh", 1928 | role: "Java full stack Developer|CS Undergrad", 1929 | image: "https://avatars.githubusercontent.com/u/77314004?s=400&u=d4c56996920e56674e223ed33dbf246f0f91281b&v=4", 1930 | skills: ['JAVA', 'HTML', 'CSS', 'JS', 'SQL'], 1931 | link: [ 1932 | "https://github.com/LokeshXs", 1933 | "https://www.linkedin.com/in/lokesh-singh-426a901b6/", 1934 | "https://twitter.com/LOKESHS66317127", 1935 | ], 1936 | }, 1937 | { 1938 | name: "Meghan Jain H S", 1939 | role: "FrontEnd Developer", 1940 | image: " ", 1941 | skills: ["HTML", "CSS", "JS", "Java"], 1942 | link: [ 1943 | "https://github.com/meghanjain23", 1944 | "https://www.linkedin.com/in/meghan-jain-h-s-926117200/", 1945 | "https://twitter.com/meghanjain23", 1946 | ], 1947 | }, 1948 | { 1949 | name: "Yashashwini Dixit", 1950 | role: "CSE Undergraduate/Full Stack Developer/Data Analyst", 1951 | image: "https://avatars.githubusercontent.com/u/64366760?v=4", 1952 | skills: ['react.js', 'node.js', 'HTML', 'CSS', 'AI/ML', 'Python', 'Javascript', 'Java', 'AWS Cloud'], 1953 | link: [ 1954 | "https://github.com/YashashwiniDixit", 1955 | "https://www.linkedin.com/in/yashashwini-dixit-072016191/", 1956 | "https://twitter.com/YashashwiniDix1", 1957 | ], 1958 | }, 1959 | { 1960 | name: "Gaurav Agrawal", 1961 | role: "Software Engineer", 1962 | image: "https://avatars.githubusercontent.com/u/46554034?v=4", 1963 | skills: ['HTML/CSS/JS', 'React', 'C#', 'Python', 'Azure', 'SQL'], 1964 | link: [ 1965 | "https://github.com/gauravagrwal", 1966 | "https://linkedin.com/in/--gauravagrawal", 1967 | "https://twitter.com/__gauravagrwal", 1968 | ], 1969 | }, 1970 | { 1971 | name: "Vinayaka Nayak", 1972 | role: "Technical Solutions Consultant", 1973 | image: "https://avatars.githubusercontent.com/u/87776505?v=4", 1974 | skills: ['VMware', 'Virtualization', 'AWS', 'HCI'], 1975 | link: [ 1976 | "https://github.com/NayakVinayaka", 1977 | "https://www.linkedin.com/in/vinayaka-nayak-47231b167/", 1978 | "https://twitter.com/NayakVinayaka", 1979 | ], 1980 | }, 1981 | { 1982 | name: "Chirag Soni", 1983 | role: "Linux System Admin", 1984 | image: "https://avatars.githubusercontent.com/u/87776625?v=4", 1985 | skills: ['Cloud Computing', 'NetWork', 'Script', 'Linux'], 1986 | link: [ 1987 | "https://github.com/chirag1999", 1988 | "https://www.linkedin.com/in/chirag-soni-615987179/", 1989 | "https://twitter.com/TWITTER_USERNAME", 1990 | ], 1991 | }, 1992 | { 1993 | name: "Subhayu Kumar Bala", 1994 | role: "Student", 1995 | image: "https://github.com/subhayu99.png", 1996 | skills: ['Linux System Administration', 'DevOps', 'Web Development', 'Data Science'], 1997 | link: [ 1998 | "https://github.com/subhayu99", 1999 | "https://linkedin.com/in/subhayu-kumar-bala", 2000 | "https://twitter.com/subhayu99", 2001 | ], 2002 | }, 2003 | { 2004 | name: "Rahul Kumar", 2005 | role: "Frontend Developer / Machine learning Enthusiast", 2006 | image: 2007 | "https://avatars.githubusercontent.com/u/63744632?s=400&u=42e417d7456a384d78b6fcd79a70facc932bd330&v=4", 2008 | skills: ["js", "Python", "C", "C++"], 2009 | link: [ 2010 | "https://github.com/rahul3git", 2011 | "https://www.linkedin.com/in/rahul-kumar-a88794215", 2012 | "https://mobile.twitter.com/RahulKu52549520", 2013 | ], 2014 | }, 2015 | { 2016 | name: "Shruti Agrawal", 2017 | role: "Microsoft student Ambassador", 2018 | image: "https://avatars.githubusercontent.com/u/67502500?v=4", 2019 | skills: ["tsql", "python", "DBMS", "C++"], 2020 | link: [ 2021 | "https://github.com/shru2408", 2022 | "https://www.linkedin.com/in/shruti-agrawal-2001/", 2023 | "https://twitter.com/ShruAg", 2024 | ] 2025 | }, 2026 | { 2027 | name: "Prajwal Tikhe", 2028 | role: "Web Developer", 2029 | image: "https://avatars.githubusercontent.com/u/72973991?v=4", 2030 | skills: ['c++', 'python', 'html', 'css', 'js'], 2031 | link: [ 2032 | "https://github.com/PrajwalTikhe1", 2033 | "https://linkedin.com/in/prajwaltikhe", 2034 | "https://twitter.com/PrajwalTikhe10", 2035 | ], 2036 | }, 2037 | { 2038 | name: "Raja Sekhar Karanam", 2039 | role: "Full Stack Developer / DevOps Enthusiast", 2040 | image: 2041 | "https://avatars.githubusercontent.com/u/13974570?v=4", 2042 | skills: ["Java", "Spring Boot", "JavaScript", "React", "AWS", "Python"], 2043 | link: [ 2044 | "https://github.com/rkaranam", 2045 | "https://www.linkedin.com/in/raja-sekhar-karanam", 2046 | "https://twitter.com/rkaranam58", 2047 | ], 2048 | }, 2049 | { 2050 | name: "Shubham Kumar Singh", 2051 | role: "Developer", 2052 | image: "https://avatars.githubusercontent.com/u/61842432?s=400&u=727b4b64607a3613cda001b45521ba90ee5fced6&v=4", 2053 | skills: ['HTML', 'JAVA', 'CSS', 'UI/UX'], 2054 | link: [ 2055 | "https://github.com/NightWalker110", 2056 | "https://www.linkedin.com/in/-shubham-kumar-singh/", 2057 | "https://twitter.com/ShubhamkSingh77", 2058 | ], 2059 | }, 2060 | { 2061 | 2062 | name: "V SREENIVAS", 2063 | 2064 | role: "Devops", 2065 | 2066 | image: "GITHUB PROFILE IMAGE LINK", 2067 | 2068 | skills: ['js', 'react', 'node', 'react native', 'kubernetes'], 2069 | 2070 | link: [ 2071 | 2072 | "https://github.com/cnu1812", 2073 | "https://www.linkedin.com/in/v-sreenivas-985088203", 2074 | 2075 | "https://twitter.com/seenuv96520797?s=09", 2076 | 2077 | ], 2078 | 2079 | }, 2080 | { 2081 | 2082 | name: "Veeresh Soni", 2083 | role: "Student", 2084 | image: "https://github.com/veeresh745.png", 2085 | skills: ["js", "react", "node", "react native"], 2086 | link: [ 2087 | "https://github.com/veeresh745", 2088 | "https://www.linkedin.com/in/veeresh-soni/", 2089 | "https://twitter.com/veereshsoni3", 2090 | ], 2091 | }, 2092 | { 2093 | name: "DHRUVA BHATTACHARYA", 2094 | role: "Full Stack Web Developer/MERN", 2095 | image: "https://avatars.githubusercontent.com/u/71749153?v=4", 2096 | skills: ['C', 'C++', 'Java', 'Python', 'js', 'react', 'node', 'react native'], 2097 | link: [ 2098 | "https://github.com/dhruvaop", 2099 | "https://www.linkedin.com/in/dhruva-bhattacharya-14843915b/", 2100 | "https://twitter.com/DhruvaBhattach2", 2101 | ], 2102 | }, 2103 | { 2104 | 2105 | name: "Ankit Banerjee", 2106 | role: "Full Stack Developer", 2107 | image: "https://avatars.githubusercontent.com/u/63962369?v=4", 2108 | skills: ['js', 'react', 'HTML', 'CSS', 'NodeJS'], 2109 | link: [ 2110 | "https://github.com/ankitbanerjee0211", 2111 | "https://www.linkedin.com/in/ankit-banerjee-0211/", 2112 | "https://twitter.com/AnkitBan0211", 2113 | ], 2114 | }, 2115 | { 2116 | name: "R Ashwin", 2117 | role: "Python Programmer", 2118 | image: "https://avatars.githubusercontent.com/u/73417773?v=4", 2119 | skills: ['Python', 'MySQL', 'GCP', 'Microsoft Azure'], 2120 | link: [ 2121 | "https://github.com/ashwin3082002", 2122 | "https://linkedin.com/in/ashwin3082002", 2123 | "https://twitter.com/ashwin3082002", 2124 | ], 2125 | }, 2126 | { 2127 | name: "Mohtasham Sayeed Mohiuddin", 2128 | role: "Full Stack Developer/ Cloud Developer", 2129 | image: "https://avatars.githubusercontent.com/u/77109645?v=4", 2130 | skills: ["js", "react", "node", "react native"], 2131 | link: [ 2132 | "https://github.com/mohtasham9", 2133 | "https://www.linkedin.com/in/mohtasham-sayeed-mohiuddin-a844311a0", 2134 | "https://twitter.com/Mohtasham7862", 2135 | ], 2136 | }, 2137 | { 2138 | name: "Akshay Vishwakarma", 2139 | role: "Student", 2140 | image: "https://avatars.githubusercontent.com/u/47742322?v=4", 2141 | skills: ["Angular", "Python", "C++", "Arduino"], 2142 | link: [ 2143 | "https://github.com/SalientAuthor", 2144 | "https://www.linkedin.com/in/akshay-vishwakarma-a29694196", 2145 | "https://twitter.com/Akshay32648002", 2146 | ], 2147 | }, 2148 | 2149 | { 2150 | name: "TARUN UPADHAYAY", 2151 | role: "SOFTWARE DEVELOPER|APPLICATION DEVELOPER", 2152 | image: "https://avatars.githubusercontent.com/u/65597321?s=400&u=1068e468cef406fed9be6f303d63a56799e36aaf&v=4", 2153 | skills: ['HTML', 'Python', 'C++', 'MySQL'], 2154 | link: [ 2155 | "https://github.com/tarunupadhayay", 2156 | "https://www.linkedin.com/in/tarun-upadhayay-9a2a601a5/", 2157 | "https://twitter.com/TarunUpadhaya14", 2158 | ], 2159 | }, 2160 | 2161 | { 2162 | name: "Prajjwal Sharma", 2163 | role: "Frontend developer", 2164 | image: "https://avatars.githubusercontent.com/u/59313731?v=4", 2165 | skills: ['js', 'react', 'node'], 2166 | link: [ 2167 | "https://github.com/prajjwal-24", 2168 | "https://linkedin.com/in/prajjwals24", 2169 | "https://twitter.com/prajjwalsharma_", 2170 | ], 2171 | }, 2172 | { 2173 | name: "Harsh Bartariya", 2174 | role: "Programming enthusiast | Cs student", 2175 | image: "https://avatars.githubusercontent.com/u/59999317?v=4", 2176 | skills: ["js", "node", "angular", "python", "java", "Artificial intelligence", "Arduino"], 2177 | link: [ 2178 | "https://github.com/Harsh-bartariya", 2179 | "https://linkedin.com/in/harsh-viha786", 2180 | "https://twitter.com/@HBartariya", 2181 | ], 2182 | }, 2183 | { 2184 | name: "Sarvesh Agrawal", 2185 | role: "Data Scientist", 2186 | image: "https://avatars.githubusercontent.com/u/36103211?v=4", 2187 | skills: ["Python", "JavaScript", "Machine Learning", "Deep Learning", "Tensorflow", "MongoDB", "MySQL"], 2188 | link: [ 2189 | "https://github.com/Sarvesh1523", 2190 | "https://www.linkedin.com/in/sarvesh1523/", 2191 | "https://twitter.com/@Sarvesh65900833", 2192 | ], 2193 | }, 2194 | { 2195 | name: "Jahanvi Sharma", 2196 | role: "Developer", 2197 | image: 2198 | "https://avatars.githubusercontent.com/u/56484763?s=400&u=2b960213c7167ce8552af8c1a4da5ffb8ab9a53d&v=4", 2199 | skills: ["HTML", "PYTHON", "CSS", "UI/UX"], 2200 | link: [ 2201 | "https://github.com/jahanvisharma-dotcom", 2202 | "https://www.linkedin.com/in/jahanvi-sharma-5333a8174/", 2203 | "https://twitter.com/jahanvisharma77", 2204 | ], 2205 | }, 2206 | { 2207 | name: "Shambashib Majumdar", 2208 | role: "Developer", 2209 | image: 2210 | "https://avatars.githubusercontent.com/u/62923672?v=4", 2211 | skills: ["HTML", "java", "C++"], 2212 | link: [ 2213 | "https://github.com/shambashib20", 2214 | "https://www.linkedin.com/in/shambashib/", 2215 | "https://twitter.com/devholic_sham20", 2216 | ], 2217 | }, 2218 | { 2219 | name: "Suvra Shaw", 2220 | role: "Designer | ML Enthusiast", 2221 | image: "https://avatars.githubusercontent.com/u/56395895?v=4", 2222 | skills: ['JAVA', 'UI/UX', 'ML', 'FIGMA'], 2223 | link: [ 2224 | "https://github.com/suvrashaw", 2225 | "https://linkedin.com/in/suvrashaw", 2226 | "https://twitter.com/suvrashaw", 2227 | ], 2228 | }, 2229 | { 2230 | name: 'Jayant Goel', 2231 | role: 'Developer', 2232 | image: 'https://avatars.githubusercontent.com/u/54479676?v=4', 2233 | skills: ['Android', 'Data Science', 'Web Development', 'Cloud Computing', 'C++'], 2234 | link: [ 2235 | 'https://github.com/JayantGoel001', 2236 | 'https://www.linkedin.com/in/JayantGoel001/', 2237 | 'https://twitter.com/JayantGoel001', 2238 | ], 2239 | }, 2240 | { 2241 | name: 'Avnoor Singh', 2242 | role: 'Competetive Programmer | Web-Developer | ML Enthusiast', 2243 | image: 'https://avatars.githubusercontent.com/u/54592053?v=4', 2244 | skills: ['C++','Competitve Coder', 'Data Science', 'Web Development', 'Machine Learning'], 2245 | link: [ 2246 | 'https://github.com/avnoor-488', 2247 | 'https://www.linkedin.com/in/avnoor-488/', 2248 | ' ', 2249 | ], 2250 | }, 2251 | { 2252 | name: 'Ayush Kumar', 2253 | role: 'Web Developer | ML-Enthaustic | Open Source Contributer', 2254 | image: 'https://avatars.githubusercontent.com/u/67006255?v=4', 2255 | skills: ['C++', 'Python', 'Web Development', 'Machine-Learning', 'Open Source'], 2256 | link: [ 2257 | 'https://github.com/Ayush7614', 2258 | 'https://www.linkedin.com/in/ayush-kumar-%F0%9F%87%AE%F0%9F%87%B3-984443191/', 2259 | 'https://twitter.com/AyushKu38757918', 2260 | ], 2261 | }, 2262 | { 2263 | name: 'Abhinav Dubey', 2264 | role: 'DevOps & Cloud Practitioner | Open Source Enthusiast | Tech Blogger', 2265 | image: 'https://avatars.githubusercontent.com/u/48083659?v=4', 2266 | skills: ['Python', 'Full Stack Developer', 'Kubernetes', 'Cloud Computing', 'DevOps'], 2267 | link: [ 2268 | 'https://github.com/Abhinav-26', 2269 | 'https://www.linkedin.com/in/abhinavd26/', 2270 | 'https://twitter.com/abhinavd26', 2271 | ], 2272 | }, 2273 | ]; 2274 | export default data; 2275 | --------------------------------------------------------------------------------