Skip to content

Commit

Permalink
feat: added community partners section
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkapravo-Ghosh committed Jun 14, 2024
1 parent d29e91e commit e1e6836
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 7 deletions.
21 changes: 14 additions & 7 deletions src/assets/data/SponsorsContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ const sponsors = {
{
name: "Filecoin",
img: filecoin,
link: "https://filecoin.io/",
link: "https://filecoin.io",
},
],
Gold: [
{
name: "Github",
img: github,
link: "https://github.com/",
link: "https://github.com",
},

{
name: "Avalanche",
img: avalanche,
link: "https://www.avax.network/",
link: "https://www.avax.network",
},

{
Expand All @@ -39,26 +39,26 @@ const sponsors = {
{
name: "HackQuest",
img: hackquest,
link: "https://www.hackquest.io/",
link: "https://www.hackquest.io",
},
],
Silver: [
{
name: "Road To DevCon",
img: devcon,
link: "https://devcon.org/en/",
link: "https://devcon.org",
},
],
Bronze: [
{
name: "Router Protocol",
img: router,
link: "https://www.routerprotocol.com/",
link: "https://www.routerprotocol.com",
},
{
name: "GDG Cloud Kolkata",
img: gdg,
link: "https://ccd2024.gdgcloudkol.org/",
link: "https://ccd2024.gdgcloudkol.org",
},
],
Domain: [
Expand All @@ -75,6 +75,13 @@ const sponsors = {
link: "https://www.jis.com",
},
],
Community: [
{
name: "GDG Cloud Kolkata",
img: gdg,
link: "https://ccd2024.gdgcloudkol.org",
},
]
};

export default sponsors;
12 changes: 12 additions & 0 deletions src/components/private/sponsors/Sponsors.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,18 @@ const Sponsors = () => {
</div>
</div>
</div>
<div className="sponsors__container_flex">
<div className="sponsors__container domain_container">
<h1>Community Partners</h1>
<div className="sponsors__flexbox">
{sponsors["Community"].map((item, index) => {
return (
<SingleSponsors key={index} sponsor={item} type="silver" />
);
})}
</div>
</div>
</div>
</div>
</>
);
Expand Down

0 comments on commit e1e6836

Please sign in to comment.