Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 'Ethereum Ecosystem' CTA to ethereum.org #12373

Merged
merged 10 commits into from
Jun 24, 2024
4 changes: 3 additions & 1 deletion src/intl/en/page-dapps.json
Original file line number Diff line number Diff line change
Expand Up @@ -285,5 +285,7 @@
"page-dapps-dapp-description-dodo": "DODO is a on-chain liquidity provider, which leverages the Proactive Market Maker algorithm (PMM)",
"page-dapps-dodo-image-alt": "DODO logo",
"page-dapps-dapp-description-artblocks": "Art Blocks is dedicated to bringing compelling works of contemporary generative art to life",
"page-dapps-artblocks-image-alt": "Art Blocks logo"
"page-dapps-artblocks-image-alt": "Art Blocks logo",
"page-dapps-explore-title": "Want to browse more apps?",
"page-dapps-explore": "Check out hundreds of dapps"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"page-dapps-explore": "Check out hundreds of dapps"
"page-dapps-explore": "Check out more dapps"

Dont have a strong opinion here, but think this would be better

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fine either way here... "hundreds" does kinda drive home the point that there are a lot of them

}
22 changes: 22 additions & 0 deletions src/pages/dapps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1554,6 +1554,16 @@ const DappsPage = () => {
/>
</RightColumn>
</TwoColumnContent>
<Box py={4} w="full">
<Text m={0} fontWeight="bold">
{t("page-dapps:page-dapps-explore-title")}
</Text>
<Text m={0}>
<InlineLink href="https://www.ethereum-ecosystem.com/apps">
{t("page-dapps:page-dapps-explore")}
</InlineLink>
</Text>
</Box>
<CalloutBanner
mt={32}
mx={0}
Expand Down Expand Up @@ -1770,6 +1780,18 @@ const DappsPage = () => {
</TwoColumnContent>
</Content>
)}
{selectedCategory !== CategoryType.FINANCE && (
<Content>
<Text m={0} fontWeight="bold">
{t("page-dapps:page-dapps-explore-title")}
</Text>
<Text m={0}>
<InlineLink href="https://www.ethereum-ecosystem.com/apps">
{t("page-dapps:page-dapps-explore")}
</InlineLink>
</Text>
</Content>
)}
{/* General content for all categories */}
<Content>
<CenterDivider />
Expand Down
Loading