Skip to content

Commit

Permalink
fix: changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalCodes committed Jun 5, 2024
1 parent f1628e9 commit 0a40f6c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
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 0a40f6c

Please sign in to comment.