Skip to content

Commit 14dcb15

Browse files
authored
Merge pull request #13241 from plamarque/dev
add meeds to dapps
2 parents 3035bf7 + 99f02b3 commit 14dcb15

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

public/images/dapps/meeds.png

8.29 KB
Loading

src/intl/en/page-dapps.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
"page-dapps-choose-category": "Choose category",
4242
"page-dapps-category-social": "Social media",
4343
"page-dapps-category-content": "Content",
44+
"page-dapps-category-community": "Community",
4445
"page-dapps-category-messaging": "Messaging",
4546
"page-dapps-category-identity": "Identity",
4647
"page-dapps-collectibles-benefits-1-description": "When art is tokenised on Ethereum, ownership can be proved for all to see. You can trace the artwork's journey from creation to its current holder. This prevents forgeries.",
@@ -95,6 +96,7 @@
9596
"page-dapps-dapp-description-loopring": "Peer-to-peer trading platform built for speed.",
9697
"page-dapps-dapp-description-marble-cards": "Create and trade unique digital cards based on URLs.",
9798
"page-dapps-dapp-description-matcha": "Searches multiple exchanges to help find you the best prices.",
99+
"page-dapps-dapp-description-meeds": "Web3 community hubs for the age of decentralized work. Reward fairly and transparently contributions that matter.",
98100
"page-dapps-dapp-description-mirror": "Built on web3 for web3, Mirror’s robust publishing platform pushes the boundaries of writing online",
99101
"page-dapps-dapp-description-multichain": "The ultimate Router for web3. It is an infrastructure developed for arbitrary cross-chain interactions.",
100102
"page-dapps-dapp-description-nifty-gateway": "Buy works on-chain from top artists, athletes, brands, and creators.",
@@ -218,6 +220,7 @@
218220
"page-dapps-marble-cards-logo-alt": "marble.cards logo",
219221
"page-dapps-async-logo-alt": "Async logo",
220222
"page-dapps-matcha-logo-alt": "Matcha logo",
223+
"page-dapps-meeds-logo-alt": "Meeds logo",
221224
"page-dapps-metaverse-benefits-title": "metaverse",
222225
"page-dapps-metaverse-benefits-description": "What is it about Ethereum that allows the metaverse to thrive?",
223226
"page-dapps-metaverse-benefits-1-title": "NFTs",

src/pages/dapps.tsx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ import lido from "@/public/images/dapps/lido.png"
9191
import loopring from "@/public/images/dapps/loopring.png"
9292
import marble from "@/public/images/dapps/marble.png"
9393
import matcha from "@/public/images/dapps/matcha.png"
94+
import meeds from "@/public/images/dapps/meeds.png"
9495
import mirror from "@/public/images/dapps/mirror.png"
9596
import nexus from "@/public/images/dapps/nexus.png"
9697
import nifty from "@/public/images/dapps/nifty.png"
@@ -1167,6 +1168,16 @@ const DappsPage = () => {
11671168
},
11681169
]
11691170

1171+
const community = [
1172+
{
1173+
title: "Meeds",
1174+
description: t("page-dapps-dapp-description-meeds"),
1175+
link: "https://meeds.io",
1176+
image: meeds,
1177+
alt: t("page-dapps-meeds-logo-alt"),
1178+
},
1179+
]
1180+
11701181
const demandAggregator = [
11711182
{
11721183
title: "KyberSwap",
@@ -1778,6 +1789,15 @@ const DappsPage = () => {
17781789
/>
17791790
</RightColumn>
17801791
</TwoColumnContent>
1792+
<TwoColumnContent>
1793+
<LeftColumn>
1794+
<ProductList
1795+
category={t("page-dapps-category-community")}
1796+
content={community}
1797+
/>
1798+
</LeftColumn>
1799+
<RightColumn />
1800+
</TwoColumnContent>
17811801
</Content>
17821802
)}
17831803
{selectedCategory !== CategoryType.FINANCE && (

0 commit comments

Comments
 (0)