├── public
├── _redirects
├── favicon.ico
├── logo192.png
├── logo512.png
├── robots.txt
├── assets
│ └── images
│ │ ├── home
│ │ ├── Date.png
│ │ ├── git.png
│ │ ├── logo.png
│ │ ├── STARRR.png
│ │ ├── Location.png
│ │ ├── element.png
│ │ ├── homeback.png
│ │ ├── searchbar.png
│ │ └── seminarhall.png
│ │ └── profile
│ │ ├── popup_bg.jpg
│ │ └── popup_mobile.png
├── manifest.json
└── index.html
├── src
├── components
│ ├── index.js
│ └── AnimatedRoutes.jsx
├── pages
│ ├── ErrorPage.jsx
│ ├── index.js
│ ├── Profile.jsx
│ └── Home.jsx
├── App.js
├── index.js
├── index.css
└── data
│ └── User.js
├── postcss.config.js
├── .prettierrc
├── .vscode
└── settings.json
├── .gitignore
├── .eslintrc.json
├── tailwind.config.js
├── package.json
├── CONTRIBUTING.md
└── README.md
/public/_redirects:
--------------------------------------------------------------------------------
1 | /* /index.html 200
--------------------------------------------------------------------------------
/src/components/index.js:
--------------------------------------------------------------------------------
1 | export { default as AnimatedRoutes } from "./AnimatedRoutes";
2 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CSI-DJSCE/Git-For-Geeks2/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CSI-DJSCE/Git-For-Geeks2/HEAD/public/logo192.png
--------------------------------------------------------------------------------
/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CSI-DJSCE/Git-For-Geeks2/HEAD/public/logo512.png
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/public/assets/images/home/Date.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CSI-DJSCE/Git-For-Geeks2/HEAD/public/assets/images/home/Date.png
--------------------------------------------------------------------------------
/public/assets/images/home/git.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CSI-DJSCE/Git-For-Geeks2/HEAD/public/assets/images/home/git.png
--------------------------------------------------------------------------------
/public/assets/images/home/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CSI-DJSCE/Git-For-Geeks2/HEAD/public/assets/images/home/logo.png
--------------------------------------------------------------------------------
/public/assets/images/home/STARRR.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CSI-DJSCE/Git-For-Geeks2/HEAD/public/assets/images/home/STARRR.png
--------------------------------------------------------------------------------
/public/assets/images/home/Location.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CSI-DJSCE/Git-For-Geeks2/HEAD/public/assets/images/home/Location.png
--------------------------------------------------------------------------------
/public/assets/images/home/element.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CSI-DJSCE/Git-For-Geeks2/HEAD/public/assets/images/home/element.png
--------------------------------------------------------------------------------
/public/assets/images/home/homeback.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CSI-DJSCE/Git-For-Geeks2/HEAD/public/assets/images/home/homeback.png
--------------------------------------------------------------------------------
/public/assets/images/home/searchbar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CSI-DJSCE/Git-For-Geeks2/HEAD/public/assets/images/home/searchbar.png
--------------------------------------------------------------------------------
/public/assets/images/home/seminarhall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CSI-DJSCE/Git-For-Geeks2/HEAD/public/assets/images/home/seminarhall.png
--------------------------------------------------------------------------------
/public/assets/images/profile/popup_bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CSI-DJSCE/Git-For-Geeks2/HEAD/public/assets/images/profile/popup_bg.jpg
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "semi": true,
3 | "tabWidth": 2,
4 | "printWidth": 100,
5 | "trailingComma": "es5",
6 | "quoteProps": "consistent"
7 | }
--------------------------------------------------------------------------------
/public/assets/images/profile/popup_mobile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CSI-DJSCE/Git-For-Geeks2/HEAD/public/assets/images/profile/popup_mobile.png
--------------------------------------------------------------------------------
/src/pages/ErrorPage.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 |
3 | function ErrorPage() {
4 | return
ERROR! PAGE NOT FOUND
;
5 | }
6 |
7 | export default ErrorPage;
8 |
--------------------------------------------------------------------------------
/src/pages/index.js:
--------------------------------------------------------------------------------
1 | export { default as Home } from "./Home";
2 | export { default as Profile } from "./Profile";
3 | export { default as ErrorPage } from "./ErrorPage.jsx";
4 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "editor.codeActionsOnSave": { "source.fixAll.eslint": true },
3 | "editor.formatOnSave": true,
4 | "eslint.alwaysShowStatus": true,
5 | "files.autoSave": "onFocusChange"
6 | }
7 |
--------------------------------------------------------------------------------
/src/App.js:
--------------------------------------------------------------------------------
1 | import { BrowserRouter as Router } from "react-router-dom";
2 | import React from "react";
3 | import { AnimatedRoutes } from "./components";
4 |
5 | function App() {
6 | return (
7 |
8 |
9 |
10 | );
11 | }
12 |
13 | export default App;
14 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import ReactDOM from "react-dom/client";
3 | import "./index.css";
4 | import App from "./App";
5 |
6 | const root = ReactDOM.createRoot(document.getElementById("root"));
7 | root.render(
8 |
9 |
10 |
11 | );
12 |
--------------------------------------------------------------------------------
/.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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/src/components/AnimatedRoutes.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { Route, Routes, useLocation } from "react-router-dom";
3 | import { ErrorPage, Home, Profile } from "../pages";
4 | import { AnimatePresence } from "framer-motion";
5 |
6 | const AnimatedRoutes = () => {
7 | const location = useLocation();
8 | return (
9 |
10 |
11 | } />
12 | } />
13 | } />
14 |
15 |
16 | );
17 | };
18 |
19 | export default AnimatedRoutes;
20 |
--------------------------------------------------------------------------------
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "browser": true,
4 | "es2021": true
5 | },
6 | "extends": ["eslint:recommended", "plugin:react/recommended", "plugin:prettier/recommended"],
7 | "overrides": [],
8 | "parserOptions": {
9 | "ecmaVersion": "latest",
10 | "sourceType": "module"
11 | },
12 | "plugins": ["react", "prettier"],
13 | "rules": {
14 | "react/prop-types": "off",
15 | "no-unused-vars": "warn",
16 | "quote-props": ["error", "consistent"],
17 | "prettier/prettier": [
18 | "error",
19 | {
20 | "endOfLine": "auto"
21 | }
22 | ]
23 | },
24 | "settings": {
25 | "react": {
26 | "version": "detect"
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/tailwind.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('tailwindcss').Config} */
2 | // eslint-disable-next-line no-undef
3 | module.exports = {
4 | content: ["./src/**/*.{js,jsx,ts,tsx}"],
5 |
6 | theme: {
7 | extend: {
8 | maxWidth: {
9 | "1/2": "50%",
10 | },
11 | screens: {
12 | sm: "480px",
13 | md: "768px",
14 | lg: "976px",
15 | },
16 | fontFamily: {
17 | gothic: ["Libre Franklin", "sans-serif"],
18 | segou: ["Segoe Script", "Georgia"],
19 | caveat: ["Caveat"],
20 | },
21 | fontSize: {
22 | xl: [
23 | "24px",
24 | {
25 | lineHeight: "27.21px",
26 | },
27 | ],
28 | },
29 | borderWidth: {
30 | 3: "3px",
31 | },
32 | colors: {
33 | darkOlive: "#ACC2A8",
34 | white: "#FFFFFF",
35 | cream: "#FEF5ED",
36 | lilOlive: "#D3E4CD",
37 | brightOlive: "#ADC2A9",
38 | icon1: "#D1D184",
39 | icon2: "#525C52",
40 | icon3: "#DBFBB1",
41 | },
42 | },
43 | },
44 | // eslint-disable-next-line no-undef
45 | plugins: [require("tailwind-scrollbar"), require("tailwind-scrollbar-hide")],
46 | variants: {
47 | scrollbar: ["rounded"],
48 | },
49 | };
50 |
--------------------------------------------------------------------------------
/src/index.css:
--------------------------------------------------------------------------------
1 | @import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Libre+Franklin:wght@100;200;300;400;500;600;700;800;900&display=swap');
2 |
3 | input:focus::-webkit-input-placeholder { color:transparent; }
4 | input:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
5 | input:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
6 | input:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */
7 |
8 | @tailwind base;
9 | @tailwind components;
10 | @tailwind utilities;
11 |
12 | body{
13 | background-color: #F5F5F5;
14 | }
15 |
16 | @media only screen and (max-width: 600px) {
17 | body {
18 | overflow-y: hidden;
19 | }
20 | }
21 | @layer components {
22 | .primary-btn {
23 | @apply max-w-fit mx-auto text-black bg-darkOlive border-3 border-black px-8 py-3 font-gothic rounded-3xl text-xl flex cursor-pointer relative items-center justify-center;
24 | box-shadow: 0 4px 0 0 black;
25 | }
26 |
27 | .primary-btn-click:hover {
28 | top: 3px;
29 | box-shadow: none;
30 | }
31 |
32 | .name-pills {
33 | @apply bg-darkOlive border-solid border-2 border-black rounded-full px-1 py-2 md:py-4 md:px-2 font-gothic relative sm:text-lg md:text-xl;
34 | box-shadow: 0 6px 0 0 black;
35 | }
36 |
37 | .custom-scrollbar {
38 | @apply scrollbar-thin h-screen md:scrollbar scrollbar-thumb-[#D9D9D9] overflow-y-scroll scrollbar-thumb-rounded-lg scrollbar-track-rounded-full;
39 | }
40 |
41 | }
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "git-for-geeks",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "@testing-library/jest-dom": "^5.16.5",
7 | "@testing-library/react": "^13.4.0",
8 | "@testing-library/user-event": "^13.5.0",
9 | "framer-motion": "^7.6.2",
10 | "react": "^18.2.0",
11 | "react-dom": "^18.2.0",
12 | "react-icons": "^4.6.0",
13 | "react-router-dom": "^6.4.2",
14 | "react-scripts": "5.0.1",
15 | "tailwind-scrollbar-hide": "^1.1.7",
16 | "web-vitals": "^2.1.4"
17 | },
18 | "scripts": {
19 | "start": "react-scripts start",
20 | "build": "react-scripts build",
21 | "test": "react-scripts test",
22 | "eject": "react-scripts eject",
23 | "lint": "eslint 'src/**/*.{js,jsx,json}'",
24 | "lint:fix": "eslint --fix 'src/**/*.{js,jsx,json}'",
25 | "format": "prettier --write 'src/**/*.{js,jsx,json}'"
26 | },
27 | "eslintConfig": {
28 | "extends": [
29 | "react-app",
30 | "react-app/jest"
31 | ]
32 | },
33 | "browserslist": {
34 | "production": [
35 | ">0.2%",
36 | "not dead",
37 | "not op_mini all"
38 | ],
39 | "development": [
40 | "last 1 chrome version",
41 | "last 1 firefox version",
42 | "last 1 safari version"
43 | ]
44 | },
45 | "devDependencies": {
46 | "autoprefixer": "^10.4.12",
47 | "eslint": "^8.26.0",
48 | "eslint-config-prettier": "^8.5.0",
49 | "eslint-plugin-prettier": "^4.2.1",
50 | "eslint-plugin-react": "^7.31.10",
51 | "postcss": "^8.4.18",
52 | "prettier": "^2.7.1",
53 | "tailwind-scrollbar": "^2.0.1",
54 | "tailwindcss": "^3.2.1"
55 | }
56 | }
57 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
14 |
15 |
24 | Git For Geeks
25 |
26 |
27 |
28 |
29 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Welcome to Git For Geeks2 contributing guide
2 |
3 | Thank you for investing your time in contributing to Git For Geeks2!
4 |
5 | This guide aims to provide an overview of the contribution workflow to help us make the contribution process effective for everyone involved.
6 |
7 | ## About the Project
8 |
9 | The website is made for DJCSI's Git For Geeks Second Commit workshop to demonstrate Github Workflow.
10 |
11 | Read the [README](README.md) to get an overview of the project.
12 |
13 | ## Getting Started
14 |
15 | Below are the steps to follow to contribute to this project:
16 |
17 | **1.** Fork [this](https://github.com/CSI-DJSCE/Git-For-Geeks2) repository.
18 |
19 | **2.** Clone your forked copy of the project.
20 |
21 | ```
22 | git clone https://github.com//Git-For-Geeks2.git
23 | ```
24 |
25 | where `your_user_name` is your GitHub username.
26 |
27 | **3.** Navigate to the project directory.
28 |
29 | ```
30 | cd Git-For-Geeks2
31 | ```
32 |
33 | **4.** Add a reference(remote) to the original repository.
34 |
35 | ```
36 | git remote add upstream https://github.com/CSI-DJSCE/Git-For-Geeks2.git
37 | ```
38 |
39 | **5.** Check the remotes for this repository.
40 |
41 | ```
42 | git remote -v
43 | ```
44 |
45 | **6.** Always take a pull from the upstream repository to your main branch to keep it at par with the main project(updated repository). Feel free to raise new issues.
46 |
47 | ```
48 | git pull upstream main
49 | ```
50 |
51 | **7.** Create a new branch.
52 |
53 | ```
54 | git checkout -b
55 | ```
56 |
57 | **8.** Make necessary changes and commit those changes
58 |
59 | **9.** Track your changes.
60 |
61 | ```
62 | git add .
63 | ```
64 |
65 | **10.** Commit your changes .
66 |
67 | ```
68 | git commit -m "bla bla bla"
69 | ```
70 |
71 | **11.** Push the committed changes in your feature branch to your remote repo.
72 |
73 | ```
74 | git push -u origin
75 | ```
76 |
77 | **12.** To create a pull request, click on `Compare & pull request`. Please ensure you compare your feature branch to the desired branch of the repo you are suppose to make a PR to.
78 |
79 | **13.** Add appropriate title and description to your pull request explaining your changes and efforts done.
80 |
81 | **14.** Click on `Create pull request`.
82 |
83 | **15.** Congrats!! 🎉 you are done creating a pull request to this project.
84 |
85 | **16.** After this, the maintainers will review the PR and will merge it if it helps move the project forward. Otherwise, it will be given constructive feedback and suggestions for the changes needed to add the PR to the codebase.
86 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Git For Geeks Second Commit 🚀
2 | The website is made for DJCSI's Git For Geeks Second Commit workshop to demonstrate Github Workflow.
3 | ## Tech Stack 💻
4 | 
5 | 
6 |
7 |
8 |
9 | ## Project Screen Shots
10 | #### Home Page :
11 |
12 |
13 | #### Profile Page :
14 |
15 |
16 |
17 |
18 | # Installation and Setup Instructions ⚙️
19 |
20 | Clone down this repository. You will need `node` and `npm` installed globally on your machine.
21 |
22 | Installation:
23 |
24 | $ git clone https://github.com/CSI-DJSCE/Git-For-Geeks2.git
25 | $ cd Git-For-Geeks2
26 | $ npm install
27 |
28 |
29 | To View on browser App:
30 |
31 | Run :
32 |
33 | $ npm start
34 |
35 | open `localhost:3000` on browser.
36 |
37 |
38 | ## Making your first PR 😎
39 | 1) Checkout [User.js](https://github.com/CSI-DJSCE/Git-For-Geeks2/blob/main/src/data/User.js) in `src/data` direcotry.
40 | 2) Start editing the [User.js](https://github.com/CSI-DJSCE/Git-For-Geeks2/blob/main/src/data/User.js) file and append your details similar to others details at the `User` object
41 | (make sure your details object key is your github username)
42 | 
43 | 3) Example object(fill in your details !)
44 | ```js
45 | "Priyankaa2503": {
46 | name: "Priyanka Ramachandran",
47 | branch: "IT",
48 | description:
49 | "Exploring web and expanding my knowledge by learning innovative concepts, skills and technologies.",
50 | links: {
51 | github: "https://github.com/Priyankaa2503",
52 | instagram: "https://instagram.com/priyankaa__25",
53 | linkedin: "https://www.linkedin.com/in/priyanka2503/",
54 | portfolio: "",
55 | },
56 | },
57 | ```
58 | 4) Once done, commit your changes by clicking `commint changes` buttong at bottom
59 | 
60 | 5) You are ready with your first PR 🔥
61 |
62 | **Make sure your checkout next section for detailed workflow !!**
63 |
64 | ## Contributing to Git For Geeks2 🙌
65 |
66 | We welcome contributions to Git For Geeks2!
67 |
68 | Please see [CONTRIBUTING.MD](https://github.com/CSI-DJSCE/Git-For-Geeks2/blob/main/CONTRIBUTING.md) for more information and guidelines for contributing to Git For Geeks2.
69 |
70 | ## Thanks to all Contributors 💪
71 |
72 | Thanks a lot for spending your time and contributing 🚀 .
73 |
74 | [](https://github.com/CSI-DJSCE/Git-For-Geeks2/graphs/contributors)
75 |
76 |
--------------------------------------------------------------------------------
/src/pages/Profile.jsx:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { AiFillGithub, AiFillLinkedin, AiFillInstagram, AiOutlineArrowLeft } from "react-icons/ai";
3 | import { BsGlobe } from "react-icons/bs";
4 | import { useParams } from "react-router-dom";
5 | import UsersData from "../data/User";
6 | import ErrorPage from "./ErrorPage";
7 | import { Link } from "react-router-dom";
8 | import { motion } from "framer-motion";
9 |
10 | const Profile = () => {
11 | const params = useParams();
12 | const { userId } = params;
13 | const userData = UsersData[userId];
14 | const { name, branch, description, links } = userData;
15 |
16 | if (UsersData[userId] === undefined) {
17 | return ;
18 | }
19 | return (
20 |
25 |
31 | {name}
32 |
33 | {branch}
34 |
35 |
36 |
37 | {description}
38 |
39 |
40 |
113 |
114 |
115 |
116 |
119 |
120 |
121 | );
122 | };
123 |
124 | export default Profile;
125 |
--------------------------------------------------------------------------------
/src/pages/Home.jsx:
--------------------------------------------------------------------------------
1 | import React, { useMemo, useRef, useState } from "react";
2 | import { AiOutlineGithub, AiOutlineSearch } from "react-icons/ai";
3 | import { Link } from "react-router-dom";
4 | import UsersData from "../data/User";
5 | import { motion } from "framer-motion";
6 |
7 | const Home = () => {
8 | const inputRef = useRef(null);
9 | const userIds = useMemo(() => Object.keys(UsersData), []);
10 | const [query, setQuery] = useState("");
11 |
12 | const handleSearchClick = () => {
13 | inputRef.current.focus();
14 | };
15 |
16 | const keys = ["name"];
17 | const search = (data) => {
18 | return data.filter((item) =>
19 | keys.some((key) => UsersData[item][key]?.toLowerCase().includes(query.toLowerCase()))
20 | );
21 | };
22 |
23 | return (
24 |
25 | {/* Floating images start */}
26 |

30 |
31 |

36 |

41 |
42 |

47 |
48 | {/*

53 |

*/}
58 | {/* Floating images end */}
59 |
60 |
67 | {/* Header start */}
68 |
69 | {/* Three Button */}
70 |
71 |
77 |
83 |
89 |
90 | {/* Three buttons end*/}
91 |
92 |
93 | BROUGHT TO YOU BY
94 |
95 |
101 |
102 |
103 |
104 |
105 | {/* Header ens */}
106 |
107 | {/* GFG Body start */}
108 |
109 |
113 |
GIT
114 |
115 |
116 | FR{" "}
117 |
118 |
GEEKS
119 |
120 |
121 | Second Commit
122 |
123 |
124 |
125 |
setQuery(e.target.value)}
131 | />
132 |
137 |
138 |
139 |
140 |
141 | {search(userIds).map((userId) => {
142 | const userData = UsersData[userId];
143 | return (
144 |
145 |
146 | {userData?.name}
147 |
148 |
149 | );
150 | })}
151 |
152 |
153 | Built with ❤️ by DJCSI Tech Team
154 |
155 | {/*
Built with ❤️ by DJCSI Tech Team
*/}
156 |
157 | );
158 | };
159 |
160 | export default Home;
161 |
162 | // scrollbar-thin lg:scrollbar scrollbar-thumb-[#D9D9D9] scrollbar-thumb-rounded-lg scrollbar-track-rounded-full
163 |
--------------------------------------------------------------------------------
/src/data/User.js:
--------------------------------------------------------------------------------
1 | const Users = {
2 | "Priyankaa2503": {
3 | name: "Priyanka Ramachandran",
4 | branch: "IT",
5 | description:
6 | "Exploring web and expanding my knowledge by learning innovative concepts, skills and technologies.",
7 | links: {
8 | github: "https://github.com/Priyankaa2503",
9 | instagram: "https://instagram.com/priyankaa__25",
10 | linkedin: "https://www.linkedin.com/in/priyanka2503/",
11 | portfolio: "",
12 | },
13 | },
14 | "MurtazaShikari": {
15 | name: "Murtaza Shikari",
16 | branch: "IT",
17 | description:
18 | "Expanding my knowledge in web development and trying to implement new things by exploring other fields",
19 | links: {
20 | github: "https://github.com/MurtazaShikari",
21 | instagram: "https://instagram.com/shikarimurtaza",
22 | linkedin: "https://www.linkedin.com/in/murtaza-shikari-606450230",
23 | portfolio: "",
24 | },
25 | },
26 | "mahek15": {
27 | name: "Mahek Jain",
28 | branch: "IT",
29 | description:
30 | "Enhancing my skills by learning new things each day and exploring various domains .",
31 | links: {
32 | github: "https://github.com/mahek15",
33 | instagram: "https://instagram.com/mahekj_15",
34 | linkedin: "https://www.linkedin.com/in/mahek-jain-123aa022a",
35 | portfolio: "",
36 | },
37 | },
38 | "technophile-04": {
39 | name: "Shiv Bhonde",
40 | branch: "IT",
41 | description:
42 | "👋 Hey! I'm an avid Full-stack Web2/Web3 Developer. I like to build 🏗 random stuff in my free time. Always learning new things. Ask me about web 🕸 and blockchain ⛓. Feel free to reach out for colab or help 🙌",
43 | links: {
44 | github: "https://github.com/technophile-04",
45 | instagram: "https://instagram.com/shivbhonde.eth",
46 | linkedin: "https://www.linkedin.com/in/shiv-bhonde-b23a1a205/",
47 | portfolio: "https://github.com/technophile-04",
48 | },
49 | },
50 | "jinish08": {
51 | name: "Jinish Shah",
52 | branch: "IT",
53 | description: "Exploring | Learning",
54 | links: {
55 | github: "https://github.com/jinish08",
56 | instagram: "https://instagram.com/shahjinish08",
57 | linkedin: "https://www.linkedin.com/in/jinish-shah-70970b206",
58 | portfolio: "",
59 | },
60 | },
61 | "ayushshah31": {
62 | name: "Ayush Shah",
63 | branch: "IT",
64 | description: "Do what to do, Scooby Doo",
65 | links: {
66 | github: "https://github.com/ayushshah31",
67 | instagram: "https://instagram.com/ayushshah39",
68 | linkedin: "https://www.linkedin.com/in/ayush-shah-711476225/",
69 | portfolio: "shahayush177.netlify.app",
70 | },
71 | },
72 | "sauravshah9": {
73 | name: "Saurav Shah",
74 | branch: "IT",
75 | description: "Exploring | Learning",
76 | links: {
77 | github: "https://github.com/sauravshah9",
78 | instagram: "https://instagram.com/shahh_saurav",
79 | linkedin: "https://www.linkedin.com/in/saurav-shah-b4932b165",
80 | portfolio: "",
81 | },
82 | },
83 | "Vinit45Shah": {
84 | name: "Vinit Shah",
85 | branch: "IT",
86 | description: "I speak fluent sarcasm",
87 | links: {
88 | github: "https://github.com/Vinit45Shah",
89 | instagram: "https://www.instagram.com/vinit.shah45/?hl=en",
90 | linkedin: "https://www.linkedin.com/in/vinit-shah-699826224",
91 | portfolio: "",
92 | },
93 | },
94 | "Drishti9421": {
95 | name: "Drishti Dhingani",
96 | branch: "IT",
97 | description: "Exploring | Learning",
98 | links: {
99 | github: "https://github.com/Drishti9421",
100 | instagram: "https://www.instagram.com/drishti___d/",
101 | linkedin: "https://www.linkedin.com/in/drishti-dhingani-6381071b8/",
102 | portfolio: "",
103 | },
104 | },
105 | "Bhavna214": {
106 | name: "Bhavna Mulchandani",
107 | branch: "IT",
108 | description: "Exploring | Learning",
109 | links: {
110 | github: "https://github.com/Bhavna214",
111 | instagram: "https://www.instagram.com/m.bhavna_/",
112 | linkedin: "https://www.linkedin.com/in/bhavna-m-b9a90b200",
113 | portfolio: "",
114 | },
115 | },
116 | "priyankshah3011": {
117 | name: "Priyank Shah",
118 | branch: "IT",
119 | description: "Exploring | Learning",
120 | links: {
121 | github: "https://github.com/priyankshah3011",
122 | instagram: "https://instagram.com/priyank_shah._?igshid=YmMyMTA2M2Y=",
123 | linkedin: "https://www.linkedin.com/in/priyank-shah-2b38601b6",
124 | portfolio: "",
125 | },
126 | },
127 | "HetviSolanki49701": {
128 | name: "Hetvi Solanki",
129 | branch: "IT",
130 | description: "Hip, hip, array!",
131 | links: {
132 | github: "https://github.com/HetviSolanki49701",
133 | instagram: "https://www.instagram.com/hetvi_solanki01/?hl=en",
134 | linkedin: "https://www.linkedin.com/in/hetvi-solanki-1b8998223/",
135 | portfolio: "",
136 | },
137 | },
138 | "ParikhVairag": {
139 | name: "Vairag Parikh",
140 | branch: "IT",
141 | description: "Exploring | Learning",
142 | links: {
143 | github: "https://github.com/TechyVp",
144 | instagram: "https://www.instagram.com/parikhvairag/?hl=en",
145 | linkedin: "https://www.linkedin.com/in/vairag-parikh",
146 | portfolio: "",
147 | },
148 | },
149 | "neocollege": {
150 | name: "Prathamesh Nayak",
151 | branch: "IT",
152 | description: "Exploring | Learning",
153 | links: {
154 | github: "https://github.com/neocollege",
155 | instagram: "https://www.instagram.com/pr.x.th",
156 | linkedin: "https://www.linkedin.com/in/prathamesh-nayak-5a4a411ba",
157 | portfolio: "",
158 | },
159 | },
160 | "MadAra-UcHiHa89": {
161 | name: "Aadil Saudagar",
162 | branch: "IT",
163 | description: "Exploring | Learning",
164 | links: {
165 | github: "https://github.com/MadAra-UcHiHa89",
166 | instagram: "https://www.instagram.com/im_aadil_/?hl=en",
167 | linkedin: "https://www.linkedin.com/in/aadil-saudagar-7b467b1b1/",
168 | portfolio: "",
169 | },
170 | },
171 | "MickyCR7": {
172 | name: "Meet Vora",
173 | branch: "IT",
174 | description: "Any one can do my job, but no one can be me!",
175 | links: {
176 | github: "https://github.com/MickyCR7",
177 | instagram: "https://instagram.com/meeettt___?igshid=YmMyMTA2M2Y=",
178 | linkedin: "https://www.linkedin.com/in/mnvora",
179 | portfolio: "",
180 | },
181 | },
182 | "Premdoshi": {
183 | name: "Prem doshi",
184 | branch: "IT",
185 | description: "My name says it all",
186 | links: {
187 | github: "https://github.com/Premdoshi1208",
188 | instagram: "https://instagram.com/premmmmmmm12?igshid=YmMyMTA2M2Y=",
189 | linkedin: "https://www.linkedin.com/in/prem-doshi-482347224",
190 | portfolio: "",
191 | },
192 | },
193 |
194 | "Nadpi-Pinad": {
195 | name: "Prasanna Nadkarni",
196 | branch: "EXTC",
197 | description: "Agnostic by Choice, Litterateur by Passion, Xenophile with an Adjectival Name!!!",
198 | links: {
199 | github: "https://github.com/Nadpi-Pinad",
200 | instagram: "https://www.instagram.com/agnostic_litterateur756/?hl=en",
201 | linkedin: "https://www.linkedin.com/in/prasanna-nadkarni-315a96255/",
202 | portfolio: "",
203 | },
204 | },
205 | "BHAVYAPODDAR": {
206 | name: "Bhavya Poddar",
207 | branch: "IT",
208 | description: "enthusiastic | learning ;) ",
209 | links: {
210 | github: "https://github.com/BHAVYAPODDAR",
211 | instagram: "",
212 | linkedin: "https://www.linkedin.com/in/bhavya-poddar-b90721250",
213 | },
214 | },
215 | "GajJoshi": {
216 | name: "Gaj Joshi",
217 | branch: "CS",
218 | description: "enthusiastic | learning ;) ",
219 | links: {
220 | github: "https://github.com/gajjoshi",
221 | instagram: "",
222 | linkedin: "https://www.linkedin.com/in/gaj-joshi-877ba6228",
223 | portfolio: "",
224 | },
225 | },
226 | "khushishah2443": {
227 | name: "Khushi Shah",
228 | branch: "IT",
229 | description: "Exploring | Learning",
230 | links: {
231 | github: "https://github.com/khushishah2443",
232 | instagram: "https://www.instagram.com/kkhushi_shah/?hl=en",
233 | linkedin: "https://www.linkedin.com/in/khushi-shah-600744235/",
234 | portfolio: "",
235 | },
236 | },
237 | "RACHIT101": {
238 | name: "Rachit Gala",
239 | branch: "IT",
240 | description: "Exploring | Learning",
241 | links: {
242 | github: "https://github.com/RacHiT101",
243 | instagram: "https://www.instagram.com/galaraachit/?hl=en",
244 | linkedin: "https://www.linkedin.com/in/rachit-gala-ab968b235/",
245 | },
246 | },
247 | "kriti.derasadi": {
248 | name: "Kriti Derasadi",
249 | branch: "IT",
250 | description: "Exploring | Learning",
251 | links: {
252 | github: "https://github.com/Kderasadi",
253 | instagram: "",
254 | linkedin: "https://www.linkedin.com/in/kriti-derasadi-1086b522a/",
255 | portfolio: "",
256 | },
257 | },
258 | "RiddheshMistry": {
259 | name: "Riddhesh Mistry",
260 | branch: "EXTC",
261 | description: "Exploring | Learning",
262 | links: {
263 | github: "https://github.com/Riddhesh0109",
264 | instagram: "https://www.instagram.com/riddheshh_/?hl=e",
265 | linkedin: "https://www.linkedin.com/in/riddhesh-mistry-651856235/",
266 | portfolio: "",
267 | },
268 | },
269 | "ManasPatil0967": {
270 | name: "RManas Patil",
271 | branch: "IoT",
272 | description: "Make good of your tine.",
273 | links: {
274 | github: "https://github.com/ManasPatil0967",
275 | instagram: "",
276 | linkedin: "https://www.linkedin.com/in/manas-patil-239879224/",
277 | },
278 | },
279 | "Mustansir-M": {
280 | name: "Mustansir Motiwala",
281 | description: "Exploring | Learning | Enjoying",
282 | links: {
283 | github: "https://github.com/Mustansir-M",
284 | instagram: "https://www.instagram.com/mustansir_m00/",
285 | linkedin: "https://www.linkedin.com/in/mustansir-motiwala-65948022a/",
286 | portfolio: "",
287 | },
288 | },
289 | "SwayamMestry": {
290 | name: "Swayam Mestry",
291 | branch: "IoT",
292 | description: "Exploring | Learning",
293 | links: {
294 | github: "https://github.com/SwayamMestry",
295 | instagram: "https://www.instagram.com/5wayam/",
296 | linkedin: "",
297 | portfolio: "",
298 | },
299 | },
300 | "AryanGupta2406": {
301 | name: "Aryan gupta",
302 | branch: "IT",
303 | description: "Exploring | Learning",
304 | links: {
305 | github: "https://github.com/AryanGupta2406",
306 | linkedin: "https://www.linkedin.com/in/aryan-gupta-0a348522a/",
307 | portfolio: "",
308 | },
309 | },
310 | "anujbohra23": {
311 | name: "Anuj Bohra",
312 | branch: "IT",
313 | description: "Exploring | Learning",
314 | links: {
315 | github: "https://github.com/anujbohra23",
316 | instagram: "https://instagram.com/bohraanuj23?igshid=YmMyMTA2M2Y=",
317 | linkedin: "https://www.linkedin.com/in/anuj-bohra-977a75251",
318 | portfolio: "",
319 | },
320 | },
321 | "tanayajoshi": {
322 | name: "Tanaya Joshi",
323 | branch: "IT",
324 | description: "Exploring | Learning",
325 | links: {
326 | github: "https://github.com/tanayajoshi",
327 | instagram: "https://www.instagram.com/invites/contact/?i=16yqg1wzr2n32&utm_content=2h7oe8s",
328 | linkedin: "http://linkedin.com/in/tanaya-joshi-4b95b7230",
329 | },
330 | },
331 | "neminsheth": {
332 | name: "Nemin Sheth",
333 | branch: "IT",
334 | description: "Aspiring Engineer",
335 | links: {
336 | github: "https://github.com/neminsheth",
337 | instagram: "https://www.instagram.com/nemin_sheth/",
338 | linkedin: "https://www.linkedin.com/in/nemin-sheth-dj-it/",
339 | portfolio: "",
340 | },
341 | },
342 | "shivani2442": {
343 | name: "ShivaniPatel",
344 | branch: "IT",
345 | description: "Exploring | Learning | Enjoying",
346 | links: {
347 | github: "https://github.com/shivani2442",
348 | instagram: "https://www.instagram.com/shivani_.24/",
349 | linkedin: "https://www.linkedin.com/in/shivani-patel-090671235/",
350 | portfolio: "",
351 | },
352 | },
353 | "tabss007": {
354 | name: "Tanvi Bhide",
355 | description: "Go with the flow",
356 | links: {
357 | github: "https://github.com/tabss007",
358 | linkedin: "https://www.linkedin.com/in/temp10/",
359 | instagram: "",
360 | portfolio: "",
361 | },
362 | },
363 | "niharn22": {
364 | name: "Nihar Nandoskar",
365 | branch: "IT",
366 | description: "Go with the flow",
367 | links: {
368 | github: "https://github.com/Nadpi-Pinad",
369 | instagram: "https://www.instagram.com/agnostic_litterateur756/?hl=en",
370 | linkedin: "https://www.linkedin.com/in/prasanna-nadkarni-315a96255/",
371 | portfolio: "",
372 | },
373 | },
374 | "MorakhiaDhimant": {
375 | name: "Dhimant Morakhia",
376 | branch: "IT",
377 | description: "Exploring new fields to expand my knowledge.",
378 | links: {
379 | github: "https://github.com/MorakhiaDhimant",
380 | instagram: "https://www.instagram.com/temp10/?hl=en",
381 | linkedin: "https://www.linkedin.com/in/dhimant-morakhia-7b49a2237/",
382 | portfolio: "",
383 | },
384 | },
385 | "vaishkadukar": {
386 | name: "Vaishnavi Kadukar",
387 | branch: "IT",
388 | description: "Exploring | Learning",
389 | links: {
390 | github: "https://github.com/vaishkadukar",
391 | instagram: "https://www.instagram.com/vaishnavi_kadukar",
392 | linkedin: "https://www.linkedin.com/in/vaishnavi-kadukar-883975250/",
393 | },
394 | },
395 | "dbs-2012": {
396 | name: "Darsh Shah",
397 | branch: "IT",
398 | description: "Exploring | Learning",
399 | links: {
400 | github: "https://github.com/dbs-2012",
401 | instagram: "https://www.instagram.com/darshshah2002/",
402 | linkedin: "https://www.linkedin.com/in/darsh-shah-7b9686226/",
403 | portfolio: "",
404 | },
405 | },
406 | "TanmayRaina": {
407 | name: "Tanmay Raina",
408 | branch: "IT",
409 | description: "Exploring | Learning",
410 | links: {
411 | github: "https://github.com/Tanmay Raina",
412 | instagram: "https://www.instagram.com/tanmay_raina/?hl=en",
413 | linkedin: "https://www.linkedin.com/in/temp10/",
414 |
415 | portfolio: "",
416 | },
417 | },
418 | "KelyMistry": {
419 | name: "Kely Mistry",
420 | branch: "IT",
421 | description: "Go with the flow",
422 | links: {
423 | github: "https://github.com/KelyMistry",
424 | instagram: "",
425 | linkedin: "",
426 | portfolio: "",
427 | },
428 | },
429 | "Bhargavi1210": {
430 | name: "Bhargavi Vaidya",
431 | branch: "AI and DS",
432 | description: "Exploring | Learning",
433 | links: {
434 | github: "https://github.com/Bhargavi1210",
435 | instagram: "",
436 | linkedin: "",
437 | portfolio: "",
438 | },
439 | },
440 | "Viral0401": {
441 | name: "Viral Dalal",
442 | branch: "IT",
443 | description: "Exploring | Learning",
444 | links: {
445 | github: "https://github.com/Viral0401",
446 | instagram: "https://www.instagram.com/wtfviral_/?hl=en",
447 | linkedin: "https://www.linkedin.com/in/viral-dalal-424827251",
448 | },
449 | },
450 | "rockeyur": {
451 | name: "Keyur Parmar",
452 | branch: "IT",
453 | description:
454 | "Exploring web and expanding my knowledge by learning innovative concepts, skills and technologies.",
455 | links: {
456 | github: "https://github.com/rockeyur",
457 | instagram: "https://instagram.com/keyur_parmar_1203",
458 | linkedin: "https://www.linkedin.com/in/keyur-parmar-5414a8238/",
459 | },
460 | },
461 | "Aditya-Dalvi": {
462 | name: "Aditya Dalvi",
463 | branch: "IOT",
464 | description: "Exploring | Learning",
465 | links: {
466 | github: "https://github.com/Aditya-Dalvi",
467 | instagram: "https://www.instagram.com/aditya_dalvi_07/",
468 | linkedin: "https://bit.ly/3CfK8CR",
469 | portfolio: "",
470 | },
471 | },
472 | "IshaPatade": {
473 | name: "Isha Patade",
474 | branch: "IT",
475 | description: "Exploring | Learning",
476 | links: {
477 | github: "https://github.com/IshaPatade",
478 | instagram: "https://www.instagram.com/_ishaaaa__",
479 | linkedin: "https://www.linkedin.com/in/isha-patade-096226252/",
480 | portfolio: "",
481 | },
482 | },
483 | "AnuragLade": {
484 | name: "Anurag Lade",
485 | branch: "IT",
486 | description:
487 | "Expanding my knowledge in web development and trying to implement new things by exploring other fields",
488 | links: {
489 | github: "GitHub-www.github.com/Anurag11L",
490 | instagram: "https://www.instagram.com/_anureg_/",
491 | linkedin: "LinkIn-linkedin.com/in/anurag-lade-aaa4b022a",
492 | portfolio: "",
493 | },
494 | },
495 | "kushlav238": {
496 | name: "Kushal Vadodaria",
497 | branch: "IT",
498 | description: "Carpe Deim",
499 | links: {
500 | github: "https://github.com/kushalv238",
501 | instagram: "https://www.instagram.com/kushalv238",
502 | linkedin: "https://www.linkedin.com/in/kushal-vadodaria/",
503 | portfolio: "",
504 | },
505 | },
506 | "Bhavyaz": {
507 | name: "Bhavya Zaveri",
508 | branch: "IT",
509 | description: "Exploring | Learning",
510 | links: {
511 | github: "https://github.com/bhavyaz",
512 | instagram: "https://www.instagram.com/bhavya_zaveri",
513 | linkedin: "https://www.linkedin.com/in/bhavya-zaveri-300b11151/",
514 | portfolio: "",
515 | },
516 | },
517 | "Vedant4K": {
518 | name: "Vedant Chavan",
519 | branch: "IT",
520 | description: "Exploring | Learning",
521 | links: {
522 | github: "https://github.com/Vedant4K",
523 | instagram: "https://www.instagram.com/vedantchavan25/",
524 | linkedin: "https://www.linkedin.com/in/vedant-chavan-772b35229",
525 | portfolio: "",
526 | },
527 | },
528 | "MithilBavishi": {
529 | name: "Mithil Bavishi",
530 | branch: "IT",
531 | description: "Each program has, at minimum, one unnecessary line of code.",
532 | links: {
533 | github: "https://github.com/MightyM17",
534 | instagram: "https://instagram.com/mithilbavishi",
535 | linkedin: "https://www.linkedin.com/in/mithil-bavishi/",
536 | },
537 | },
538 | "Rushii": {
539 | name: "Rushikesh Gadewar",
540 | branch: "IT OP",
541 | description: "Don't Tell Anyone I Am A Ninja!",
542 | links: {
543 | github: "",
544 | instagram: "https://www.instagram.com/rushikeshgadewar197/",
545 | linkedin: "https://www.linkedin.com/in/rushikesh-gadewar-4a6847210/?originalSubdomain=in",
546 | portfolio: "",
547 | },
548 | },
549 | "jeniels": {
550 | name: "Jeniel Shah",
551 | branch: "IT",
552 | description: "Exploring | Learning",
553 | links: {
554 | github: "https://github.com/jeniels/",
555 | instagram: "",
556 | linkedin: "https://www.linkedin.com/in/jeniel-shah-77a455205/",
557 | portfolio: "",
558 | },
559 | },
560 | "shahsamkit3124": {
561 | name: "Samkit Shah",
562 | branch: "IT",
563 | description: "Exploring | Learning",
564 | links: {
565 | github: "https://github.com/shahsamkit3124",
566 | instagram: "https://www.instagram.com/_samkit.shah_3124/",
567 | linkedin: "https://www.linkedin.com/in/samkit-shah-752802216/",
568 | portfolio: "",
569 | },
570 | },
571 | "udayIT03": {
572 | name: "Uday Baldha",
573 | branch: "IT",
574 | description: "Exploring | Learning",
575 | links: {
576 | github: "https://github.com/udayIT03",
577 | instagram: "",
578 | linkedin: "https://www.linkedin.com/in/uday-b-95b73322b",
579 | portfolio: "",
580 | },
581 | },
582 | "ParvKaria": {
583 | name: "Parv Karia",
584 | branch: "CSE [IOT]",
585 | description: "Exploring | Learning",
586 | links: {
587 | github: "https://github.com/ParvKaria",
588 | instagram: "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
589 | linkedin: "https://www.linkedin.com/in/parv-karia-b2748222a/",
590 | portfolio: "",
591 | },
592 | },
593 | "DhruvJ014": {
594 | name: "Dhruv Jain",
595 | branch: "CSE-DS",
596 | description: "Learning Github rn :)",
597 | links: {
598 | github: "https://github.com/dhruvj014",
599 | instagram: "https://instagram.com/dhruvjain_014",
600 | linkedin: "https://www.linkedin.com/in/dhruvjain314/",
601 | portfolio: "",
602 | },
603 | },
604 | "Vsoham": {
605 | name: "Soham rane",
606 | branch: "IOT",
607 | description:
608 | "Exploring web and expanding my knowledge by learning innovative concepts, skills and technologies.",
609 | links: {
610 | github: "",
611 | instagram: "",
612 | linkedin: "",
613 | portfolio: "",
614 | },
615 | },
616 | "Sohamthatte": {
617 | name: "Soham Thatte",
618 | branch: "IT",
619 | description: "Exploring | Learning",
620 | links: {
621 | github: "https://github.com/Sohamthatte",
622 | instagram: "https://www.instagram.com/soham.thatte/",
623 | linkedin: "https://www.linkedin.com/in/soham-thatte-11b4b3250/",
624 | portfolio: "Gitforgeeks",
625 | },
626 | },
627 | "AdityaT27": {
628 | name: "Aditya Thatte",
629 | branch: "IT",
630 | description: "Optimizing",
631 | links: {
632 | github: "https://github.com/Thatte-Aditya/Git-For-Geeks2",
633 | instagram: "https://www.instagram.com/thatte_aditya/",
634 | linkedin: "https://www.linkedin.com/in/aditya-thatte-b90675235/",
635 | portfolio: "",
636 | },
637 | },
638 | "Hydrosmasher": {
639 | name: "Hrishikesh Karmalkar",
640 | branch: "AI & DS",
641 | description: "",
642 | links: {
643 | github: "",
644 | instagram: "",
645 | linkedin: "",
646 | portfolio: "",
647 | },
648 | },
649 | "rahul15rc": {
650 | name: "Rahul Chougule",
651 | branch: "IT",
652 | description: "-_-",
653 | links: {
654 | github: "https://github.com/rahul15rc",
655 | instagram: "https://www.instagram.com/rahulll._.15/",
656 | linkedin: "https://www.linkedin.com/in/rahulchougule15/",
657 | portfolio: "",
658 | },
659 | },
660 | "quintessentialdevrev": {
661 | name: "Satvam Thakkar",
662 | branch: "DS",
663 | description: "The only thing that I know, is that I know nothing",
664 | links: {
665 | github: "https://github.com/quintessentialdevrev",
666 | instagram: "https://www.instagram.com/satvam_thakkar/",
667 | linkedin: "https://www.linkedin.com/in/satvam-thakkar-5a5744250/",
668 | portfolio: "",
669 | },
670 | },
671 | "sarthakmahale123": {
672 | name: "Sarthak Mahale",
673 | branch: "IT",
674 | description: "Insert Chhapri bio here:",
675 | links: {
676 | github: "https://github.com/sarthakmahale123",
677 | instagram: "https://instagram.com/sarthak_mahale12",
678 | linkedin: "https://www.linkedin.com/in/",
679 | portfolio: "",
680 | },
681 | },
682 | "PARZIVAL0609": {
683 | name: "Dhruv Shah",
684 | branch: "IT",
685 | description: "",
686 | links: {
687 | github: "https://github.com/PARZIVAL0609",
688 | instagram: "https://instagram.com/parzival_069",
689 | linkedin: "https://www.linkedin.com/in/dhruv-shah-21a151250/",
690 | portfolio: "",
691 | },
692 | },
693 | "Udayanvats": {
694 | name: "Udayan vats",
695 | branch: "IT",
696 | description: "Exploring | Learning",
697 | links: {
698 | github: "https://github.com/Udayanvats",
699 | instagram: "https://www.instagram.com/udayan.vats/",
700 | linkedin: "https://www.linkedin.com/in/udayan-vats-302a1b225/",
701 | portfolio: "",
702 | },
703 | },
704 | "hetnakhua": {
705 | name: "Het Nakhua",
706 | branch: "IT",
707 | description:
708 | "Exploring web and expanding my knowledge by learning innovative concepts, skills and technologies.",
709 | links: {
710 | github: "https://github.com/hetnakhua",
711 | instagram: "https://instagram.com/hetnakhua",
712 | linkedin: "https://www.linkedin.com/in/het-nakhua/",
713 | portfolio: "",
714 | },
715 | },
716 | "jay-096": {
717 | name: "Jay Mehta",
718 | branch: "COMPS",
719 | description: "Exploring | Learning",
720 | links: {
721 | github: "https://github.com/jay-096",
722 | instagram: "https://www.instagram.com/jayy_mehta09/",
723 | linkedin: "https://www.linkedin.com/in/jay-mehta-b1a36b214/",
724 | portfolio: "hi",
725 | },
726 | },
727 | "rakite28": {
728 | name: "Rachit Bhojani",
729 | branch: "COMPS",
730 | description: "Exploring | Learning",
731 | links: {
732 | github: "https://github.com/rakite28/",
733 | instagram: "https://www.instagram.com/rakite28/",
734 | linkedin: "https://www.linkedin.com/in/rachit-bhojani-b1a36b214",
735 | portfolio:
736 | "Love to code, design and develop interesting and world changing(hopefully) applications Contributing to Open-Source to learn from the community.",
737 | },
738 | },
739 | "yashshahbhai": {
740 | name: "YASH SHAH",
741 | branch: "IT",
742 | description:
743 | "Expanding my knowledge in web development and trying to implement new things by exploring other fields",
744 | links: {
745 | github: "https://github.com/yashshahbhai",
746 | instagram: "",
747 | linkedin: "",
748 | portfolio: "",
749 | },
750 | },
751 | "Anusshkaha": {
752 | name: "Anusshka Choudhary",
753 | branch: "IT",
754 | description: "Exploring | Learning",
755 | links: {
756 | github: "https://github.com/Anusshkaha",
757 | instagram: "https://instagram.com/anusshka_chaudhary?igshid=1cnbzwatgvtlg",
758 | linkedin: "https://www.linkedin.com/in/anusshka-chaudhary-129751221/",
759 | portfolio: "",
760 | },
761 | },
762 |
763 | "ssharma2003": {
764 | name: "Shreya Sharma",
765 | branch: "IT",
766 | description: "Exploring | Learning | Enjoying",
767 | links: {
768 | github: "https://github.com/ssharma2003",
769 | instagram: "https://www.instagram.com/im_aadil_/?hl=en",
770 | linkedin: "https://www.linkedin.com/in/aadil-saudagar-7b467b1b1/",
771 | },
772 | },
773 | "SKyde": {
774 | name: "Vansh Jain",
775 | branch: "IT",
776 | description: "Exploring | Learning",
777 | links: {
778 | github: "https://github.com/MadAra-UcHiHa8https://github.com/vanshJ314",
779 | instagram: "https://www.instagram.com/vanshj03/?hl=en",
780 | linkedin: "hhttps://www.linkedin.com/in/vansh-jain-400696235/",
781 | portfolio: "",
782 | },
783 | },
784 | "priyal3251": {
785 | name: "Priyal Donda",
786 | branch: "IT",
787 | description: "Exploring | Learning",
788 | links: {
789 | github: "https://github.com/priyal3251",
790 | instagram: "https://www.instagram.com/priyalll_d/?hl=en",
791 | linkedin:
792 | "https://www.linkedin.com/in/priyal-donda-55648522a/edit/forms/contact-info/new/?profileFormEntryPoint=PROFILE_TOP_CARD_EDIT_FORM",
793 | portfolio: "",
794 | },
795 | },
796 | "wafflesblossom0703": {
797 | name: "kanika Chitnis",
798 | branch: "IOT",
799 | description:
800 | "Exploring web and expanding my knowledge by learning innovative concepts, skills and technologies.",
801 | links: {
802 | github: "https://github.com/wafflesblossom0703",
803 | instagram: "https://www.instagram.com/_kanikaa_18?r=nametag",
804 | linkedin: "",
805 | portfolio: "",
806 | },
807 | },
808 | "Ronakk4": {
809 | name: "Ronakk Javeri",
810 | branch: "IT",
811 | description: "Exploring | Learning",
812 | links: {
813 | github: "https://github.com/Ronakk4",
814 | instagram: "https://www.instagram.com/Ronakk,javeri",
815 | linkedin: "",
816 | portfolio: "",
817 | },
818 | },
819 | "leander006": {
820 | name: "Leander D'silva",
821 | branch: "IT",
822 | description: "Exploring blockchain and expanding my knowledge by learning innovative concepts",
823 | links: {
824 | github: "https://github.com/leander006",
825 | instagram: "https://www.instagram.com/leander_dsilva06",
826 | linkedin: "https://www.linkedin.com/in/leander06",
827 | portfolio: "https://leanderdsilva.netlify.app",
828 | },
829 | },
830 | "pratikwadke02": {
831 | name: "Pratik Wadke",
832 | branch: "IT",
833 | description: "Full Stack Developer and VCP Infotech Web at ACM",
834 | links: {
835 | github: "https://github.com/pratikwadke02",
836 | instagram: "https://instagram.com/_praxxk_",
837 | linkedin: "https://www.linkedin.com/in/pratik-wadke-904b5821b/",
838 | portfolio: "",
839 | },
840 | },
841 | "nihal5617": {
842 | name: "Nihal Gupta",
843 | branch: "IT",
844 | description: "Full Stack Developer and App Developer",
845 | links: {
846 | github: "https://github.com/nihal5617",
847 | instagram: "https://www.instagram.com/nihal_5617",
848 | linkedin: "https://www.linkedin.com/in/nihal-gupta-424943208/",
849 | portfolio: "https://profile.nihal.works/",
850 | },
851 | },
852 | };
853 |
854 | export default Users;
855 |
--------------------------------------------------------------------------------