diff --git a/packages/website/components/EcosystemSection.tsx b/packages/website/components/EcosystemSection.tsx index cdc53736d7c..5e2149a9fe9 100644 --- a/packages/website/components/EcosystemSection.tsx +++ b/packages/website/components/EcosystemSection.tsx @@ -2,18 +2,19 @@ import EcosystemCard from "./EcosystemCard"; export default function EcosystemSection() { const ecosystemData = [ + { + icon: "/images/ecosystem/blockscout.svg", + name: "Blockscout", + link: "https://blockscout.com", + description: + "Blockchain Explorer for inspecting and analyzing EVM Chains.", + }, { icon: "/images/ecosystem/taiko.svg", name: "Bridge", link: "https://bridge.test.taiko.xyz", description: "Bridge is a dapp that lets you bridge tokens with Taiko.", }, - { - icon: "/images/ecosystem/taiko.svg", - name: "Swap", - link: "https://swap.test.taiko.xyz", - description: "Swap is a dapp that lets you swap tokens on Taiko.", - }, { icon: "/images/ecosystem/orbiter.jpg", name: "Orbiter", @@ -28,6 +29,19 @@ export default function EcosystemSection() { description: "Loopring is your mobile gateway to Ethereum L2, enabling you to easily trade, swap, collect, stake, and invest without the costly gas fees.", }, + // { + // icon: "/images/ecosystem/taiko.svg", + // name: "Swap", + // link: "https://swap.test.taiko.xyz", + // description: "Swap is a dapp that lets you swap tokens on Taiko.", + // }, + { + icon: "/images/ecosystem/zkpool.png", + name: "ZKPool", + link: "https://zkpool.io/", + description: + "ZKPool aggregates the computing power of accelerators for zero-knowledge proofs and provides services to ZKP applications.", + }, ]; return ( diff --git a/packages/website/public/images/ecosystem/blockscout.svg b/packages/website/public/images/ecosystem/blockscout.svg new file mode 100644 index 00000000000..3dadaf70027 --- /dev/null +++ b/packages/website/public/images/ecosystem/blockscout.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/website/public/images/ecosystem/zkpool.png b/packages/website/public/images/ecosystem/zkpool.png new file mode 100644 index 00000000000..46172da9893 Binary files /dev/null and b/packages/website/public/images/ecosystem/zkpool.png differ