Skip to content

Commit

Permalink
Merge pull request #98 from tsg-iitkgp/hall-of-fame
Browse files Browse the repository at this point in the history
feat: Added missing data of hall of fame page
  • Loading branch information
ParthGupta2510 authored Sep 15, 2023
2 parents 31c6668 + 240d3cb commit ab75cfe
Show file tree
Hide file tree
Showing 31 changed files with 849 additions and 62 deletions.
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/data/media/images/awards/abhinav-gupta.jpg
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/data/media/images/awards/abin-devassia.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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/data/media/images/awards/ashish-daga.jpg
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/data/media/images/awards/devanuj-deka.jpg
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/data/media/images/awards/divya.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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/data/media/images/awards/harsh-agarwal.jpg
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/data/media/images/awards/hima-swetha.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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/data/media/images/awards/pareen-jain.jpg
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/data/media/images/awards/parth-jaiswal.jpg
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/data/media/images/awards/pravalika-das.jpg
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/data/media/images/awards/pushpak-roy.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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/data/media/images/awards/raja-ambrish.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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/data/media/images/awards/utkarsh-sinha.jpg
9 changes: 8 additions & 1 deletion src/pages/Awards.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import awardsData from "./awardsData.json";
import "./Awards.css";

const years = [
"2022-23",
"2021-22",
"2020-21",
"2019-20",
Expand All @@ -15,7 +16,7 @@ const years = [
];
function Awards() {
const [currentTab, setCurrentTab] = useState("tech");
const [currentYear, setCurrentYear] = useState("2021-22");
const [currentYear, setCurrentYear] = useState("2022-23");

const handleTabChange = (s) => {
setCurrentTab(s);
Expand Down Expand Up @@ -101,6 +102,9 @@ function Awards() {
name={winner.Name}
imgSrc={`data/media/images/awards/${winner.Image}`}
designation={winner.Award}
email={winner.email}
facebook={winner.facebook}
linkedin={winner.linkedin}
/>
)
)
Expand All @@ -110,6 +114,9 @@ function Awards() {
name={winner.Name}
imgSrc={`data/media/images/awards/${winner.Image}`}
designation={winner.Award}
email={winner.email}
facebook={winner.facebook}
linkedin={winner.linkedin}
/>
))}
</div>
Expand Down
Loading

0 comments on commit ab75cfe

Please sign in to comment.