From e1e6836a946e07ad688ad51cc6c299daae6968b9 Mon Sep 17 00:00:00 2001 From: Arkapravo-Ghosh Date: Sat, 15 Jun 2024 00:55:13 +0530 Subject: [PATCH] feat: added community partners section --- src/assets/data/SponsorsContent.js | 21 +++++++++++++------- src/components/private/sponsors/Sponsors.jsx | 12 +++++++++++ 2 files changed, 26 insertions(+), 7 deletions(-) diff --git a/src/assets/data/SponsorsContent.js b/src/assets/data/SponsorsContent.js index 16b0f08..2412f48 100644 --- a/src/assets/data/SponsorsContent.js +++ b/src/assets/data/SponsorsContent.js @@ -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", }, { @@ -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: [ @@ -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; diff --git a/src/components/private/sponsors/Sponsors.jsx b/src/components/private/sponsors/Sponsors.jsx index 13197ec..1cebcac 100644 --- a/src/components/private/sponsors/Sponsors.jsx +++ b/src/components/private/sponsors/Sponsors.jsx @@ -76,6 +76,18 @@ const Sponsors = () => { +
+
+

Community Partners

+
+ {sponsors["Community"].map((item, index) => { + return ( + + ); + })} +
+
+
);