Skip to content

Commit

Permalink
fix: update partnerships logos, grid, sizes..
Browse files Browse the repository at this point in the history
  • Loading branch information
kemuru committed Sep 6, 2024
1 parent b3f103f commit f55c882
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 48 deletions.
Binary file modified assets/icons/ecosystem/Etherscore.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 assets/icons/ecosystem/privado_id.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 12 additions & 44 deletions components/Ecosystem/index.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,11 @@
import EtherscoreLogo from "@assets/icons/ecosystem/Etherscore.png";
import FyreLogo from "@assets/icons/ecosystem/Fyre.png";
import GalxeLogo from "@assets/icons/ecosystem/Galxe.png";
import GitcoinLogo from "@assets/icons/ecosystem/Gitcoin.png";
import GuildXYZLogo from "@assets/icons/ecosystem/Guild.xyz.png";
import HypersignLogo from "@assets/icons/ecosystem/Hypersign.png";
import LensLogo from "@assets/icons/ecosystem/Lens.png";
import LensterLogo from "@assets/icons/ecosystem/Lenster.png";
import MazuriLogo from "@assets/icons/ecosystem/Mazuri.png";
import OrbisLogo from "@assets/icons/ecosystem/Orbis.png";
import ProofOfIntegrityLogo from "@assets/icons/ecosystem/proof-of-integrity.png";
import QLogo from "@assets/icons/ecosystem/Q.png";
import RipioCreditLogo from "@assets/icons/ecosystem/ripio-credit.png";
import SismoLogo from "@assets/icons/ecosystem/Sismo.png";
import WallIDLogo from "@assets/icons/ecosystem/WallID.png";
import QLogo from "@assets/icons/ecosystem/Q.png";
import WeLookLogo from "@assets/icons/ecosystem/WeLook.png";
import PlusIcon from "@assets/icons/plus.svg";
import PrivadoLogo from "@assets/icons/ecosystem/privado_id.png";
import POHLogo from "@assets/icons/poh-v2-logo-vertical.svg";
import Image, { StaticImageData } from "next/image";
import cn from "classnames";
Expand Down Expand Up @@ -47,51 +38,28 @@ const Ecosystem: React.FC = () => (
</h1>

<div className={style.grid}>
<div className={cn(style.side, style.left)}>
<Item logo={QLogo} alt="Q" link="https://q.org" />

<Item logo={SismoLogo} alt="Sismo" link="https://www.sismo.io" />
<Item logo={OrbisLogo} alt="Orbis" link="https://orbis.club" />
<Item logo={WeLookLogo} alt="WeLook" link="https://welook.io" />
</div>

{/* <div className={cn(style.side, style.left)}>
Items go here
</div> */}
<div className={style.circular}>
<Item logo={GitcoinLogo} alt="Gitcoin" link="https://gitcoin.co" />
<Item
logo={ProofOfIntegrityLogo}
alt="ProofOfIntegrity"
link="https://www.proofofintegrity.org"
/>
<Item
logo={HypersignLogo}
alt="Hypersign"
link="https://hypersign.id"
/>
<Item
logo={EtherscoreLogo}
alt="Etherscore"
link="https://etherscore.network"
/>
<Item logo={GuildXYZLogo} alt="GuildXYZ" link="https://guild.xyz" />
<Item logo={GalxeLogo} alt="Galxe" link="https://galxe.com" />
<Item logo={FyreLogo} alt="Fyre" link="https://fyre.id" />
<Item logo={WallIDLogo} alt="WallID" link="https://wallid.io" />
<Item
logo={RipioCreditLogo}
alt="RipioCredit"
link="https://rcn.finance"
/>
<Item logo={LensLogo} alt="Lens" link="https://www.lens.xyz" />

<Item logo={SismoLogo} alt="Sismo" link="https://www.sismo.io" />
<Item logo={QLogo} alt="Q" link="https://q.org" />
<Item logo={WeLookLogo} alt="WeLook" link="https://welook.io" />
<Item logo={PrivadoLogo} alt="Privado" link="https://privado.id/" />
<Item big logo={POHLogo} alt="Proof of Humanity" />
</div>

<div className={cn(style.side, style.right)}>
<Item logo={MazuriLogo} alt="Mazuri" link="https://mazury.xyz" />
<Item logo={LensterLogo} alt="Lenster" link="https://lenster.xyz" />
<Item logo={PlusIcon} alt="Add yours" />
<Item logo={PlusIcon} alt="Add yours" />
</div>
{/* <div className={cn(style.side, style.right)}>
Items go here
</div> */}
</div>
</section>
);
Expand Down
6 changes: 2 additions & 4 deletions components/Ecosystem/style.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -123,18 +123,16 @@
margin: 36px 0;
border-radius: 50%;

@include on-circle($item-count: 10, $circle-size: 316px, $item-size: 92px, $rotation: 288);

@include on-circle($item-count: 8, $circle-size: 316px, $item-size: 92px, $rotation: 288);
@include media.bp("tablet") {
margin: 0 40px;

@include on-circle($item-count: 10, $circle-size: 316px, $item-size: 92px, $rotation: 270);
}

@include media.bp("desktop") {
margin: 0 67px;

@include on-circle($item-count: 10, $circle-size: 475px, $item-size: 135px, $rotation: 270);
@include on-circle($item-count: 8, $circle-size: 475px, $item-size: 135px, $rotation: 288);
}
}

Expand Down

0 comments on commit f55c882

Please sign in to comment.