Skip to content

Commit

Permalink
fix:sponsors
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalCodes committed Jun 10, 2024
1 parent 96e780a commit aa02b1b
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/assets/data/SponsorsContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import filecoin from "../images/SponsorImages/filecoin.png";
import github from "../images/SponsorImages/github.png";
import graph from "../images/SponsorImages/graph.png";
import xyz from "../images/SponsorImages/xyz.png";
import router from "../images/SponsorImages/router.png";
import jis from "../images/SponsorImages/jis.png";

const sponsors = {
Expand All @@ -19,7 +20,6 @@ const sponsors = {
img: github,
link: "https://github.com/",
},

{
name: "Graph",
img: graph,
Expand All @@ -33,6 +33,13 @@ const sponsors = {
link: "https://devcon.org/en/",
},
],
Bronze: [
{
name: "Router Protocol",
img: router,
link: "https://www.routerprotocol.com/",
},
],
Domain: [
{
name: "xyz",
Expand Down
Binary file added src/assets/images/SponsorImages/router.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions src/components/private/sponsors/Sponsors.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,18 @@ const Sponsors = () => {
</div>
</div>

<div className="sponsors__container_flex">
<div className="sponsors__container domain_container">
<h1>Bronze Sponsor</h1>
<div className="sponsors__flexbox">
{sponsors["Bronze"].map((item, index) => {
return (
<SingleSponsors key={index} sponsor={item} type="domain" />
);
})}
</div>
</div>
</div>
<div className="sponsors__container_flex">
<div className="sponsors__container domain_container">
<h1>Domain Partner</h1>
Expand Down

0 comments on commit aa02b1b

Please sign in to comment.