Skip to content

Commit

Permalink
Merge branch 'main' into andresha__dev
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalCodes authored Jun 4, 2024
2 parents 1e0fca9 + 1af0fb0 commit abff163
Show file tree
Hide file tree
Showing 59 changed files with 660 additions and 459 deletions.
17 changes: 11 additions & 6 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import Surprise from "./pages/surprise/Surprise";
import Team from "./pages/team/Team";
import Telegram from "./pages/telegram/Telegram";
import "./styles/Globals.scss";
import Register from "./pages/registration/Register";

const App = () => {
return (
Expand Down Expand Up @@ -51,15 +52,18 @@ const App = () => {
/>
<Route
exact
path="/register"
path="/howto"
element={
<Forward
pathname={"/register"}
title={"Registration"}
url={"https://discord.gg/hack4bengal"}
pathname={"/howto"}
title={"Registration Walkthrough"}
url={
"https://www.instagram.com/reel/C7y9O1Ly4nk/?igsh=amYyamVtMDVlcmRi"
}
/>
}
/>
<Route exact path="/register" element={<Register />} />
<Route exact path="/coc" element={<CodeofConduct />} />
<Route exact path="/brand" element={<Brand />} />
<Route exact path="/tg" element={<Telegram />} />
Expand All @@ -68,12 +72,13 @@ const App = () => {
<Route exact path="/evangelist" element={<Evangelist />} />
<Route exact path="/team" element={<Team />} />
<Route exact path="/load" element={<Loading />} />
<Route exact path="/surprise" element={<Surprise />} />
{/* <Route exact path="/surprise" element={<Register />} /> */}
<Route exact path="/*" element={<Notfound />} />
</Routes>
</main>

{window.location.pathname !== "/surprise" && <Footer />}
{window.location.pathname !== "/surprise" &&
window.location.pathname !== "/register" && <Footer />}
</Suspense>
</Router>
);
Expand Down
4 changes: 2 additions & 2 deletions src/assets/data/HeaderContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ const HeaderData = {
sponsors: {
backWord: "Supporters",
backWordMobile: "Backers",
backWordSize: "130px",
backWordSpacing: "0.5rem",
backWordSize: "120px",
backWordSpacing: "0.3rem",
backWordSize_mobile: "75px",
backWordSpacing_mobile: "0.2rem",
frontWord: "Sponsors",
Expand Down
8 changes: 1 addition & 7 deletions src/assets/data/SponsorsContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,10 @@ import graph from "../images/SponsorImages/graph.png";
// import snu from "../images/SponsorImages/snu.webp";
// import solana from "../images/SponsorImages/solana.webp";
import xyz from "../images/SponsorImages/xyz.png";
import jis from "../images/SponsorImages/jis.png";
// import zeeve from "../images/SponsorImages/zeeve.webp";

const sponsors = {
Platinum: [
{
name: "Circle",
img: circle,
link: "https://www.circle.com/",
},
],
Gold: [
{
name: "Github",
Expand Down
101 changes: 53 additions & 48 deletions src/assets/data/TeamContent.js
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
import sanmoy from "../images/TeamCardImages/Sanmoy.webp";
import aditya from "../images/TeamCardImages/aditya.webp";
import amandeep from "../images/TeamCardImages/amandeep.webp";
import aditya from "../images/TeamCardImages/aditya.png";
import amandeep from "../images/TeamCardImages/amandeep.png";
import anirban from "../images/TeamCardImages/anirban.webp";
import ankita from "../images/TeamCardImages/ankita.webp";
import arindam from "../images/TeamCardImages/arindam.webp";
import arkapravo from "../images/TeamCardImages/arkapravo.webp";
import kiran from "../images/TeamCardImages/kiran.webp";
import krishnendu from "../images/TeamCardImages/krishnendu.webp";
import arindam from "../images/TeamCardImages/arindam.png";
import arkapravo from "../images/TeamCardImages/arkapravo.png";
import kiran from "../images/TeamCardImages/kiran.png";
import krishnendu from "../images/TeamCardImages/krishnendu.png";
import manish from "../images/TeamCardImages/manish.webp";
import prachi from "../images/TeamCardImages/prachi.webp";
import rabishankar from "../images/TeamCardImages/rabishankar.webp";
import rajdeep from "../images/TeamCardImages/rajdeep.webp";
import rinki from "../images/TeamCardImages/rinki.webp";
import rohit from "../images/TeamCardImages/rohit.webp";
import prachi from "../images/TeamCardImages/prachi.png";
import rabishankar from "../images/TeamCardImages/rabishankar.png";
import rajdeep from "../images/TeamCardImages/rajdeep.png";
import rinki from "../images/TeamCardImages/rinki.png";
import rohit from "../images/TeamCardImages/rohit.png";
import sagnik from "../images/TeamCardImages/sagnik.webp";
import samrat from "../images/TeamCardImages/samrat.webp";
import sanyukta from "../images/TeamCardImages/sanyukta.webp";
import saswata from "../images/TeamCardImages/saswata.webp";
import samrat from "../images/TeamCardImages/samrat.png";
import sanyukta from "../images/TeamCardImages/sanyukta.png";
import saswata from "../images/TeamCardImages/saswata.png";
import satya from "../images/TeamCardImages/satya.webp";
import saurabh from "../images/TeamCardImages/saurabh.webp";
import saurabh from "../images/TeamCardImages/saurabh.png";
import sayanabha from "../images/TeamCardImages/sayanabha.webp";
import shruti from "../images/TeamCardImages/shruti.webp";
import shruti from "../images/TeamCardImages/shruti.png";
import shubham from "../images/TeamCardImages/shubham.webp";
import souradeep from "../images/TeamCardImages/souradeep.webp";
import souradeep from "../images/TeamCardImages/souradeep.png";
import swarup from "../images/TeamCardImages/swarup.webp";
import tamal from "../images/TeamCardImages/tamal.webp";
import tamal from "../images/TeamCardImages/tamal.png";
import tushar from "../images/TeamCardImages/tushar.webp";
import utkarsh from "../images/TeamCardImages/utkarsh.webp";
import priya from "../images/TeamCardImages/priya.webp";
import utkarsh from "../images/TeamCardImages/utkarsh.png";

const teamMember = {
organizers: [
Expand Down Expand Up @@ -82,6 +82,37 @@ const teamMember = {
title: "Associate Prof., Department of CSE, SNU",
},
],
lead: [
{
img: aditya,
name: "Aditya",
title: "Marketing @autopilott.co",
linkedIn: "https://linkedin.com/in/withadityya",
twitter: "https://twitter.com/withadityya",
},
{
img: amandeep,
name: "Amandeep",
title: "ML Engineer",
linkedIn: "http://www.linkedin.com/in/amandeep404",
twitter: "https://twitter.com/amandeep_404",
},
{
img: kiran,
name: "Kiran",
title: "Content Lead, @H4B",
linkedIn:
"https://www.linkedin.com/in/kiranmishra21?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
twitter: "https://x.com/kiranmishra1706?t=jKakFAb5NRjRp6qLCl8BYA&s=09",
},
{
img: tamal,
name: "Tamal",
title: "You See The Site? Thanks.",
linkedIn: "https://www.linkedin.com/in/tamalcodes/",
twitter: "https://twitter.com/tamalCodes",
},
],
core: [
{
img: souradeep,
Expand Down Expand Up @@ -114,13 +145,7 @@ const teamMember = {
"https://www.linkedin.com/in/rajdeepde?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
twitter: "https://x.com/rajdeep_de_?t=VT6KpaywrWPfslnDWCJWTA&s=09",
},
{
img: amandeep,
name: "Amandeep",
title: "ML Engineer",
linkedIn: "http://www.linkedin.com/in/amandeep404",
twitter: "https://twitter.com/amandeep_404",
},

{
img: rinki,
name: "Rinki",
Expand All @@ -145,14 +170,7 @@ const teamMember = {
"https://www.linkedin.com/in/utkarsh-jaiswal-6170b5258?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
twitter: "https://x.com/utkxrsh_jaiswal/",
},
{
img: kiran,
name: "Kiran",
title: "Content Lead, @H4B",
linkedIn:
"https://www.linkedin.com/in/kiranmishra21?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
twitter: "https://x.com/kiranmishra1706?t=jKakFAb5NRjRp6qLCl8BYA&s=09",
},

{
img: sayanabha,
name: "Sayanabha",
Expand Down Expand Up @@ -204,13 +222,6 @@ const teamMember = {
linkedIn: "https://www.linkedin.com/in/priya-singh-271488222/",
twitter: "https://x.com/PriyaSi77289347",
},
{
img: aditya,
name: "Aditya",
title: "Marketing @autopilott.co",
linkedIn: "https://linkedin.com/in/withadityya",
twitter: "https://twitter.com/withadityya",
},
{
img: saurabh,
name: "Saurabh",
Expand All @@ -232,13 +243,7 @@ const teamMember = {
linkedIn: "https://www.linkedin.com/in/rabisankar-mishra-8418a5225",
twitter: "https://x.com/Rabisankar21?t=O8FH-ya57mY-LjS5-TN7oQ&s=09",
},
{
img: tamal,
name: "Tamal",
title: "Just a developer",
linkedIn: "https://www.linkedin.com/in/tamalcodes/",
twitter: "https://twitter.com/tamalCodes",
},

{
img: arkapravo,
name: "Arkapravo",
Expand Down
Binary file removed src/assets/images/404/doggo.webp
Binary file not shown.
Binary file added src/assets/images/404/doggo_img.webp
Binary file not shown.
Binary file added src/assets/images/404/reversed_doggo_img.webp
Binary file not shown.
Binary file added src/assets/images/Footer/tram.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 modified src/assets/images/FooterImages/gradient.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 modified src/assets/images/FooterImages/tram.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 removed src/assets/images/PrizesImages/FirstPrize.png
Binary file not shown.
Binary file removed src/assets/images/PrizesImages/SecondPrize.png
Binary file not shown.
Binary file removed src/assets/images/PrizesImages/ThirdPrize.png
Binary file not shown.
Binary file added src/assets/images/PrizesImages/agun.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 src/assets/images/PrizesImages/first.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 src/assets/images/PrizesImages/second.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 src/assets/images/PrizesImages/third.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 src/assets/images/SponsorImages/jis.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 src/assets/images/TeamCardImages/adarsh.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 src/assets/images/TeamCardImages/aditya.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 src/assets/images/TeamCardImages/amandeep.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 src/assets/images/TeamCardImages/arindam.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 src/assets/images/TeamCardImages/arkapravo.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 not shown.
Binary file added src/assets/images/TeamCardImages/kiran.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 src/assets/images/TeamCardImages/krishnendu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
46 changes: 0 additions & 46 deletions src/assets/images/TeamCardImages/modi.svg

This file was deleted.

Binary file added src/assets/images/TeamCardImages/prachi.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 src/assets/images/TeamCardImages/priya.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 src/assets/images/TeamCardImages/rabishankar.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 src/assets/images/TeamCardImages/rajdeep.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 src/assets/images/TeamCardImages/rinki.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 src/assets/images/TeamCardImages/rohit.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 src/assets/images/TeamCardImages/samrat.png
Binary file added src/assets/images/TeamCardImages/sanyukta.png
Binary file added src/assets/images/TeamCardImages/saswata.png
Binary file added src/assets/images/TeamCardImages/saurabh.png
Binary file added src/assets/images/TeamCardImages/shruti.png
Binary file added src/assets/images/TeamCardImages/souradeep.png
Binary file added src/assets/images/TeamCardImages/tamal.png
Binary file modified src/assets/images/TeamCardImages/tamal.webp
Binary file not shown.
Binary file added src/assets/images/TeamCardImages/utkarsh.png
2 changes: 1 addition & 1 deletion src/components/private/faq/FAQ.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const Faq = () => {
{
question: "Who can participate?",
answer:
"Students in college, schools can apply. If you can innovate or just want to have a fun learning weekend, you are most welcome.",
"Students currently enrolled in any course in High School or College can participate in Hack4Bengal. Along with that current year passouts can participate too.",
},
{
question: "How much does it cost to participate?",
Expand Down
6 changes: 6 additions & 0 deletions src/components/private/faq/FAQ.scss
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,12 @@
align-items: center;
border-radius: 50%;

svg {
width: 1em;
height: 1em;
fill: #ff1717;
}

@media screen and (max-width: 576px) {
top: 50%;
transform: translateY(-50%);
Expand Down
7 changes: 5 additions & 2 deletions src/components/private/landing/Landing.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,13 @@ const Landing = () => {
</p>

<div className="home__buttons">
<Button type="solid" to={"https://discord.gg/hack4bengal"}>
<Button type="outline" to={"https://discord.gg/hack4bengal"}>
Join Discord
</Button>
<Button type="outline" isDisabled={true}>
<Button
type="solid"
to={"https://lu.ma/0nruupo3?utm_source=website"}
>
Register Now
</Button>
</div>
Expand Down
25 changes: 24 additions & 1 deletion src/components/private/prizes/Prizes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,36 @@ import React from "react";
import HeaderData from "../../../assets/data/HeaderContent";
import { ComingSoon, Header } from "../../shared";
import "./Prizes.scss";
import first from "../../../assets/images/PrizesImages/first.png";
import second from "../../../assets/images/PrizesImages/second.png";
import third from "../../../assets/images/PrizesImages/third.png";
import agun from "../../../assets/images/PrizesImages/agun.png";

const Prizes = () => {
return (
<>
<div className="prizes__parent" id="prizes">
<Header {...HeaderData.prizes} />
<ComingSoon />
{/* <ComingSoon /> */}

<div className="prizes_container">
<div className="second_prize prize_box">
<img src={second} className="prize_logo first_prize_logo" alt="" />
<h1>TBD</h1>
<p>1st Runner Up</p>
</div>
<div className="first_prize prize_box">
<img src={first} className="prize_logo first_prize_logo" alt="" />
{/* <img src={agun} className="prize_logo first_prize_logo" alt="" /> */}
<h1>TBD</h1>
<p>Winner</p>
</div>
<div className="third_prize prize_box">
<img src={third} className="prize_logo first_prize_logo" alt="" />
<h1>TBD</h1>
<p>2nd Runner Up</p>
</div>
</div>
</div>
</>
);
Expand Down
Loading

0 comments on commit abff163

Please sign in to comment.