Skip to content

Commit

Permalink
New (#74)
Browse files Browse the repository at this point in the history
* added events and members nav button

* added node v

* added events

* Added Members section

* fixed event responsiveness

* fixed again

* made new member card

* fixed events

* minor fix

* made responsive changes

* Add a global asset placeholder

Signed-off-by: Saalim Quadri <[email protected]>

* page: Add a workflow to lint events and members json

Signed-off-by: Saalim Quadri <[email protected]>

* members: Add pratyush singh

* Also re-format

Signed-off-by: Saalim Quadri <[email protected]>

* few changes

* npm update --save

Signed-off-by: Saalim Quadri <[email protected]>

* members: Add ashutosh pandey

Signed-off-by: Saalim Quadri <[email protected]>

* members: Add Bapu

Signed-off-by: Saalim Quadri <[email protected]>

* members: Add anukul

Signed-off-by: Saalim Quadri <[email protected]>

* members: Add madhur

Signed-off-by: Saalim Quadri <[email protected]>

* members: Add debz

Signed-off-by: Saalim Quadri <[email protected]>

* Members: Add Rithik R

* members: Add akash Singh (#56)

* new changes

* some editing

* added new slides

* added banner

* Added db and other changes

* addded more branches

* added admn no. regex

* added link

* error messages added

* Minor Fixes

* fixed

* fixing

* few fixes

* updated contact us

* added * to form

* added disabled option for btn

* corrected usn regex

* corrected regex

* added toml file

* added achievments

---------

Signed-off-by: Saalim Quadri <[email protected]>
Co-authored-by: aditya <[email protected]>
Co-authored-by: Saalim Quadri <[email protected]>
Co-authored-by: Rithik Raj Pandey <[email protected]>
Co-authored-by: Akash Singh <[email protected]>
Co-authored-by: Aditya Khattri <[email protected]>
  • Loading branch information
6 people authored Nov 29, 2023
1 parent 9eea0dc commit 8c191c2
Show file tree
Hide file tree
Showing 39 changed files with 15,839 additions and 13,341 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/jsonLint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: PBCI

on: [push, pull_request]

jobs:
jsonLint:
name: JsonLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run jsonlint.
run: |
sudo apt install python3-demjson && \
while read -r script; do jsonlint $script; done < files
Empty file added assets/placeholder
Empty file.
2 changes: 2 additions & 0 deletions files
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
src/core.json
src/events.json
4 changes: 4 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[[redirects]]
from = "/*"
to = "/index.html"
status = 200
6,264 changes: 3,449 additions & 2,815 deletions package-lock.json

Large diffs are not rendered by default.

25 changes: 15 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,20 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"classnames": "^2.2.6",
"history": "^5.0.0",
"lodash": "^4.17.20",
"node-sass": "^4.13.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"@supabase/supabase-js": "^2.38.5",
"classnames": "^2.3.2",
"history": "^5.3.0",
"lodash": "^4.17.21",
"node-sass": "^4.14.1",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-awesome-slider": "^4.1.0",
"react-dom": "^16.13.1",
"react-dom": "^16.14.0",
"react-ga": "^2.7.0",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.1",
"react-hook-form": "^7.48.2",
"react-hot-toast": "^2.4.1",
"react-router-dom": "^5.3.4",
"react-scripts": "^3.4.4",
"react-typical": "^0.1.3",
"vertical-timeline-component-for-react": "^1.0.7"
},
Expand Down Expand Up @@ -42,5 +45,7 @@
"last 1 safari version"
]
},
"devDependencies": {}
"engines": {
"node": "12.x"
}
}
Binary file added public/ac.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/cc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/cf
Binary file not shown.
Binary file added public/cf.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/lc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,18 @@ import AppRoute from './utils/AppRoute';
import ScrollReveal from './utils/ScrollReveal';
import ReactGA from 'react-ga';


// Layouts
import LayoutDefault from './layouts/LayoutDefault';
import LayoutCoc from './layouts/LayoutCoc';

// Views
import Home from './views/Home';
import Coc from './views/Coc';
import Events from './components/Events/Events';
import Members from "./components/Members/Members";
import Achievements from './components/Achievements/Achievements'
import Form from './components/Form/Form';

// Initialize Google Analytics
ReactGA.initialize(process.env.REACT_APP_GA_CODE);
Expand Down Expand Up @@ -40,7 +45,11 @@ const App = () => {
<Switch>
<AppRoute exact path="/" component={Home} layout={LayoutDefault} />
<AppRoute exact path="/CodeofConduct" component={Coc} layout={LayoutCoc} />

<AppRoute exact path="/events" component={Events} layout={LayoutDefault} />
<AppRoute exact path="/achievements" component={Achievements} layout={LayoutDefault} />
<AppRoute exact path="/members" component={Members} layout={LayoutDefault}/>
<AppRoute exact path="/form" component={Form} layout={LayoutDefault}/>

</Switch>
)} />
);
Expand Down
186 changes: 186 additions & 0 deletions src/acheive.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,186 @@
[
{
"Timestamp": "11/23/2023 0:44:17",
"Email address": "[email protected]",
"Name": "Saalim",
"Batch": 2025,
"Portfolio/Github": "https://GitHub.com/danascape",
"achievements": "LFX in Linux Kernel Mentorship Program"
},
{
"Timestamp": "11/23/2023 11:21:09",
"Email address": "[email protected]",
"Name": "Pratyush Singh",
"Batch": 2024,
"Portfolio/Github": "https://www.github.com/PratyushSingh07",
"Doing internship or have done in past?": "Yes",
"Company and Position": "Vaidhyamegha",
"Stipend": 13000,
"achievements": "GSoC with mifos"
},
{
"Timestamp": "11/23/2023 15:49:05",
"Email address": "[email protected]",
"Name": "Yash Nandwana",
"Batch": 2024,
"Portfolio/Github": "github.com/YashNandwana",
"Doing internship or have done in past?": "Yes",
"Company and Position": "SWE Intern, Anuta Networks",
"Stipend": 25000,
"achievements": "ACM-ICPC Regionalist\nNokia Collegiate Wilderness 2022: Top 10"
},
{
"Timestamp": "11/23/2023 16:00:04",
"Email address": "[email protected]",
"Name": "Gaurav sarkar ",
"Batch": 2023,
"Portfolio/Github": "https://github.com/Gaurav7888",
"Doing internship or have done in past?": "Yes",
"Company and Position": "Wells Fargo Intern Analyst ",
"Stipend": 90000,
"achievements": "1) ABB Hackathon Winner\n2) Secured 3rd Prize in Academic Grand Challenge by Government of Telangana, Wells Fargo and Nasscom.\n3) Secured 3rd Prize in Bank of Baroda(BOB) World Hackathon."
},
{
"Timestamp": "11/23/2023 16:12:23",
"Email address": "[email protected]",
"Name": "Madhur Mehta",
"Batch": 2024,
"Portfolio/Github": "https://github.com/madhurmehta007",
"Doing internship or have done in past?": "Yes",
"Company and Position": "Launchpad, Android Developer Intern",
"Stipend": 40000,
"achievements": "1) 1st Runner Up at IEEE MUJ Hackathon at Manipal.\n2) 2nd Runner Up at Nokia Hackman 5.0\n3) Gitlab Certified Associate"
},
{
"Timestamp": "11/23/2023 16:13:06",
"Email address": "[email protected]",
"Name": "Debayan Ghosh Dastider",
"Batch": 2024,
"Portfolio/Github": "https://github.com/debz-g",
"Doing internship or have done in past?": "Yes",
"Company and Position": "Lokal, Android Intern",
"Stipend": 40000,
"achievements": "1. Won national hackathon by Manipal Jaipur\n2. Linux Foundation Scholar [LiFT]\n3. Gitlab Certified Associate\n4. ex-GDSC Lead "
},
{
"Timestamp": "11/23/2023 17:31:17",
"Email address": "[email protected]",
"Name": "Pratik Singh",
"Batch": 2023,
"Portfolio/Github": "https://github.com/kitarp29",
"Company and Position": "Senior SWE, Nasdaq",
"CTC": "22LPA",
"Doing internship or have done in past?": "Yes",
"Stipend": 270000,
"achievements": "GitHub extern with chaosnative"
},
{
"Timestamp": "11/23/2023 18:08:23",
"Email address": "[email protected]",
"Name": "Saalim Quadri",
"Batch": 2025,
"Portfolio/Github": "https://github.com/danascape",
"Doing internship or have done in past?": "Yes",
"Company and Position": "Linux Kernel Developer at NimoPlanet",
"Stipend": 25000,
"achievements": "LFX in Linux Kernel Mentorship"
},
{
"Timestamp": "11/23/2023 19:45:40",
"Email address": "[email protected]",
"Name": "Rishab Sharma ",
"Batch": 2024,
"Portfolio/Github": "https://github.com/Rish-01",
"Doing internship or have done in past?": "Yes",
"Company and Position": "IISc Bangalore, Research intern",
"Stipend": 15000,
"achievements": "Co authored a paper that got accepted at WACV"
},
{
"Timestamp": "11/23/2023 20:38:50",
"Email address": "[email protected]",
"Name": "Aditya B N",
"Batch": 2024,
"Portfolio/Github": "https://github.com/adirn26",
"Doing internship or have done in past?": "Yes",
"Company and Position": "CloudSEK, Backend engineering intern",
"Stipend": 50000,
"achievements": "GSOC 2023@ MIT App Inventor"
},
{
"Timestamp": "11/23/2023 21:48:05",
"Email address": "[email protected]",
"Name": "Rahul Jagwani ",
"Batch": 2024,
"Portfolio/Github": "https://github.com/Rahuljagwani",
"Doing internship or have done in past?": "No",
"achievements": "GSoC 2023"
},
{
"Timestamp": "11/23/2023 22:01:18",
"Email address": "[email protected]",
"Name": "Maaz Karim ",
"Batch": 2024,
"Portfolio/Github": "github.com/cyber-machine",
"Doing internship or have done in past?": "Yes",
"Company and Position": "Machine Learning Intern @LetsDive",
"Stipend": 40000,
"achievements": "GitHub Octernship"
},
{
"Timestamp": "11/24/2023 9:36:31",
"Email address": "[email protected]",
"Name": "Ankit Singh",
"Batch": 2023,
"Portfolio/Github": "https://ankitportfolio.social",
"Company and Position": "Pega Systems",
"CTC": 16,
"Doing internship or have done in past?": "Yes",
"Stipend": 45000,
"achievements": "Centuriton - National Level Hackathon - Winner (https://devfolio.co/projects/gunft-fe4e)"
},
{
"Timestamp": "11/24/2023 15:01:59",
"Email address": "[email protected]",
"Name": "Sachin Bhat G",
"Batch": 2023,
"Portfolio/Github": "https://github.com/sachinbhat2001",
"Company and Position": "Tata Communications Limited, DevOps Engineer",
"CTC": 7.7,
"Doing internship or have done in past?": "Yes",
"Stipend": 0,
"achievements": "2nd Runner ups in YeAH Hackathon"
},
{
"Timestamp": "11/24/2023 20:05:27",
"Email address": "[email protected]",
"Name": "Anshu Pandey",
"Batch": 2024,
"Portfolio/Github": "https://github.com/KryptonANSHU",
"Doing internship or have done in past?": "Yes",
"Company and Position": "HackerRank, TCE Intern",
"Stipend": 40000,
"achievements": "1. 2nd Position at IEEE Codify Hackathon at BNMIT.\n\n2. 1st Position at IEEE MUJ Hackathon at Manipal.\n\n3. 3rd Place at Karnataka Police Hackathon (Codefiesta)."
},
{
"Timestamp": "11/28/2023 17:15:13",
"Email address": "[email protected]",
"Name": "Gaurav Singh",
"Batch": 2024,
"Portfolio/Github": "githum.com/sgaurav37533",
"Doing internship or have done in past?": "Yes",
"Company and Position": "Data Engineer at LT partners ",
"Stipend": 85000
},
{
"Timestamp": "24/11/2023 20:19:27",
"Email address": "[email protected]",
"Name": "Anukul Anand",
"Batch": 2023,
"Portfolio/Github": "https://github.com/anukul1392001",
"Company and Position": "Fourth Frontier",
"Doing internship or have done in past?": "Yes",
"Stipend": "30000\n36000\n20000",
"achievements": "Seedbrains Innovation Awards 2023"
}
]
5 changes: 5 additions & 0 deletions src/achievem.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[{
"event_name": "John Doe",
"event_description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore e",
"event_poster":"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQlwj2YK4IT8kJKQS7a57mwtW1tDedIj4lobQ&usqp=CAU"
}]
Binary file added src/assets/images/new1.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/new2.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 8c191c2

Please sign in to comment.