Skip to content

Commit

Permalink
Merge branch 'main' of github.com-tc:hack4bengal/s3 into ark-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalCodes committed Jun 6, 2024
2 parents 1a3b1d9 + b7c95e5 commit 755a6d4
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 6 deletions.
11 changes: 11 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,17 @@ const App = () => {
/>
}
/>
<Route
exact
path="/call-for-mentors"
element={
<Forward
pathname={"/call-for-mentors"}
title={"Call for Mentors"}
url={"https://lu.ma/9fkggmb3"}
/>
}
/>
<Route exact path="/register" element={<Register />} />
<Route exact path="/coc" element={<CodeofConduct />} />
<Route exact path="/brand" element={<Brand />} />
Expand Down
13 changes: 8 additions & 5 deletions src/assets/data/SponsorsContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,20 @@ import jis from "../images/SponsorImages/jis.png";
// import zeeve from "../images/SponsorImages/zeeve.webp";

const sponsors = {
Platinum: [
{
name: "Filecoin",
img: filecoin,
link: "https://filecoin.io/",
},
],
Gold: [
{
name: "Github",
img: github,
link: "https://github.com/",
},
{
name: "Filecoin",
img: filecoin,
link: "https://filecoin.io/",
},

{
name: "Graph",
img: graph,
Expand Down
2 changes: 1 addition & 1 deletion src/assets/data/TestimonialContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const testimonials = [
github: "",
email: "",
testimonial:
"Kudos to Hack4Bengal for fostering innovation! As the Join Secretary of IT Ministry, I applaud the organizers for the seamless execution of Season 2 promising a bright future for Bengal's tech landscape.",
"Kudos to Hack4Bengal for fostering innovation! As the Joint Secretary of IT Ministry, I applaud the organizers for the seamless execution of Season 2 promising a bright future for Bengal's tech landscape.",
},
];

Expand Down
10 changes: 10 additions & 0 deletions src/components/private/sponsors/Sponsors.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ const Sponsors = () => {
<div className="sponsors__parent" id="sponsors">
<Header {...HeaderData.sponsors} />

<div className="sponsors__container gold_container">
<h1>Platinum Sponsor</h1>
<div className="sponsors__flexbox">
{sponsors["Platinum"].map((item, index) => {
return (
<SingleSponsors key={index} sponsor={item} type="platinum" />
);
})}
</div>
</div>
<div className="sponsors__container gold_container">
<h1>Gold Sponsors</h1>
<div className="sponsors__flexbox">
Expand Down

0 comments on commit 755a6d4

Please sign in to comment.