Skip to content

Commit

Permalink
fix: diamante
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalCodes committed Jun 24, 2024
1 parent f1951e0 commit 11668dd
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 12 deletions.
15 changes: 11 additions & 4 deletions src/assets/data/SponsorsContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,18 @@ import merchanzi from "../images/SponsorImages/merchanzi.png";
import composio from "../images/SponsorImages/composio.png";
import loft from "../images/SponsorImages/loft.png";
import gfd from "../images/SponsorImages/gfd.png";
import tt from "../images/SponsorImages/tt.jpg";
import tt from "../images/SponsorImages/tt.png";
import diamnante from "../images/SponsorImages/diamante.webp";

const sponsors = {
title: [
{
name: "Diamante Blockchain",
img: diamnante,
cn: "diamante",
link: "https://diamanteblockchain.com/",
},
],
Platinum: [
{
name: "Filecoin",
Expand All @@ -45,19 +54,16 @@ const sponsors = {
img: github,
link: "https://github.com",
},

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

{
name: "AvaxDAO",
img: avax,
link: "https://www.avax.network/ambassador",
},

{
name: "HackQuest",
img: hackquest,
Expand Down Expand Up @@ -140,6 +146,7 @@ const sponsors = {
{
name: "Edugraph",
img: tt,
cn: "edugraph",
link: "https://www.telegraphindia.com/edugraph",
},
],
Expand Down
8 changes: 0 additions & 8 deletions src/assets/data/TeamContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import ankita from "../images/TeamCardImages/ankita.webp";
import arindam from "../images/TeamCardImages/arindam.webp";
import arkapravo from "../images/TeamCardImages/arkapravo.webp";
import kiran from "../images/TeamCardImages/kiran.webp";
import krishnendu from "../images/TeamCardImages/krishnendu.webp";
import manish from "../images/TeamCardImages/manish.webp";
import prachi from "../images/TeamCardImages/prachi.webp";
import rabishankar from "../images/TeamCardImages/rabishankar.webp";
Expand Down Expand Up @@ -252,13 +251,6 @@ const teamMember = {
linkedIn: "https://www.linkedin.com/in/arkapravo-ghosh",
twitter: "https://x.com/ArkapravoGhosh1",
},
{
img: krishnendu,
name: "Krishnendu",
title: "Media lead @GDSC SNU",
linkedIn:
"https://www.linkedin.com/in/krishnendu-samanta-25302a238?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
},
],
};

Expand Down
Binary file added src/assets/images/SponsorImages/diamante.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/SponsorImages/diamante.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/SponsorImages/diamante.webp
Binary file not shown.
Binary file removed src/assets/images/SponsorImages/tt.jpg
Binary file not shown.
Binary file added src/assets/images/SponsorImages/tt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/components/private/sponsors/Sponsors.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ const Sponsors = () => {
<div className="sponsors__parent" id="sponsors">
<Header {...HeaderData.sponsors} />

<div className="sponsors__container gold_container">
<h1>Title Sponsor</h1>
<div className="sponsors__flexbox">
{sponsors["title"].map((item, index) => {
return (
<SingleSponsors key={index} sponsor={item} type="platinum" />
);
})}
</div>
</div>
<div className="sponsors__container gold_container">
<h1>Platinum Sponsor</h1>
<div className="sponsors__flexbox">
Expand Down
15 changes: 15 additions & 0 deletions src/components/private/sponsors/singlesponsors/SingleSponsors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -163,3 +163,18 @@
box-shadow: inset 0px 0px 13px -2px #f77b45 !important;
transition: all 0.3s ease;
}

.diamante {
border: 1px solid #9001a8 !important;
}

.diamante:hover {
-webkit-box-shadow: inset 0px 0px 13px -2px #9001a8 !important;
-moz-box-shadow: inset 0px 0px 13px -2px #9001a8 !important;
box-shadow: inset 0px 0px 13px -2px #9001a8 !important;
transition: all 0.3s ease;
}

.edugraph {
background-color: #fff;
}

0 comments on commit 11668dd

Please sign in to comment.