Skip to content

Commit

Permalink
Merchandise Partner Updated, Team Section Designation Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sagnikmitra committed Jun 17, 2024
1 parent c78d1f0 commit 9d6e2db
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 7 deletions.
8 changes: 8 additions & 0 deletions src/assets/data/SponsorsContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import polygon_guild_kolkata from "../images/CommunityImages/polygon_guild_kolka
import iei_students_chapter_cse_aot from "../images/CommunityImages/iei_students_chapter_cse_aot.webp";
import autosecurityy from "../images/CommunityImages/autosecurityy.webp";
import gdsc_iiest from "../images/CommunityImages/gdsc_iiest.webp";
import merchanzi from "../images/SponsorImages/merchanzi.png";

const sponsors = {
Platinum: [
Expand Down Expand Up @@ -85,6 +86,13 @@ const sponsors = {
link: "https://www.xyz.com",
},
],
Merchandise: [
{
name: "Merchanzi",
img: merchanzi,
link: "https://wa.me/c/918100600345",
},
],
Track: [
{
name: "Superteam India",
Expand Down
14 changes: 7 additions & 7 deletions src/assets/data/TeamContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ const teamMember = {
{
img: manish,
name: "Manish",
title: "GitHub Campus Expert",
title: "DevRel @HackQuest",
linkedIn: "https://www.linkedin.com/in/imanishbarnwal/",
twitter: "https://twitter.com/imanishbarnwal ",
},
{
img: sagnik,

name: "Sagnik",
title: "SDE @Odessa",
title: "SWE @Odessa",
linkedIn: "https://www.linkedin.com/in/sagnikmitra/",
twitter: "https://twitter.com/MitraSagnik",
},
Expand All @@ -56,14 +56,14 @@ const teamMember = {
{
img: sanmoy,
name: "Sanmoy",
title: "Community Aficionado",
title: "Founder @Merchanzi",
linkedIn: "https://www.linkedin.com/in/sanmoydam/",
twitter: "https://twitter.com/sanmoydam",
},
{
img: ankita,
name: "Ankita",
title: "President, GFG SNU Chapter",
title: "President @GFG SNU Chapter",
linkedIn: "https://www.linkedin.com/in/iankitapanda",
twitter: "https://x.com/iankitap?t=pDRhcbcwm-kgm0t9hw7m_A&s=08",
},
Expand Down Expand Up @@ -124,7 +124,7 @@ const teamMember = {
{
img: prachi,
name: "Prachi",
title: "Content team @H4B",
title: "Content Team @H4B",
linkedIn: "https://linkedin.com/in/-prachi1710",
twitter: "https://twitter.com/_prachi1710",
},
Expand Down Expand Up @@ -165,7 +165,7 @@ const teamMember = {
{
img: utkarsh,
name: "Utkarsh",
title: "Marketing team @H4B",
title: "Marketing Team @H4B",
linkedIn:
"https://www.linkedin.com/in/utkarsh-jaiswal-6170b5258?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app",
twitter: "https://x.com/utkxrsh_jaiswal/",
Expand Down Expand Up @@ -204,7 +204,7 @@ const teamMember = {
{
img: anirban,
name: "Anirban",
title: "App Dev Lead GDSC TMSL",
title: "App Dev Lead @GDSC TMSL",
linkedIn: "https://www.linkedin.com/in/anbsaha/",
twitter: "https://twitter.com/AnbSaha",
},
Expand Down
Binary file added src/assets/images/SponsorImages/merchanzi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions src/components/private/sponsors/Sponsors.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,20 @@ const Sponsors = () => {
})}
</div>
</div>
<div className="sponsors__container domain_container">
<h1>Merchandise Partner</h1>
<div className="sponsors__flexbox">
{sponsors["Merchandise"].map((item, index) => {
return (
<SingleSponsors
key={index}
sponsor={item}
type="merchandise"
/>
);
})}
</div>
</div>
</div>
</div>
</>
Expand Down
12 changes: 12 additions & 0 deletions src/components/private/sponsors/singlesponsors/SingleSponsors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@
transition: all 0.3s ease;
}

.merchandise {
border: 1px solid #00EA19;
transition: all 0.3s ease;
}

.track {
border: 1px solid #7230ff;
transition: all 0.3s ease;
Expand All @@ -112,6 +117,13 @@
transition: all 0.3s ease;
}

.merchandise:hover {
-webkit-box-shadow: inset 0px 0px 13px -2px #00EA19;
-moz-box-shadow: inset 0px 0px 13px -2px #00EA19;
box-shadow: inset 0px 0px 13px -2px #00EA19;
transition: all 0.3s ease;
}

.track:hover {
-webkit-box-shadow: inset 0px 0px 13px -2px #7230ff;
-moz-box-shadow: inset 0px 0px 13px -2px #7230ff;
Expand Down

0 comments on commit 9d6e2db

Please sign in to comment.