Skip to content

Commit b828ba9

Browse files
committed
Merge branch 'dev' into onchain
2 parents 919cc31 + 8dd4d30 commit b828ba9

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

app/[locale]/dapps/_components/dapps.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ const DappsPage = ({
542542
{
543543
title: "Curve",
544544
description: t("page-dapps-dapp-description-curve"),
545-
link: "https://curve.fi/",
545+
link: "https://www.curve.finance/",
546546
image: curve,
547547
alt: t("page-dapps-curve-logo-alt"),
548548
},
@@ -1111,7 +1111,7 @@ const DappsPage = ({
11111111
<H2 id="explore">{t("page-dapps-explore-dapps-title")}</H2>
11121112
<CenterText>{t("page-dapps-explore-dapps-description")}</CenterText>
11131113
<H3>{t("page-dapps-choose-category")}</H3>
1114-
<div className="mb-8 grid w-full grid-cols-1 justify-center gap-4 px-8 sm:grid-cols-2 lg:w-auto lg:grid-cols-3 2xl:grid-cols-6">
1114+
<div className="mb-8 grid w-full grid-cols-1 justify-center gap-4 px-8 sm:grid-cols-2 lg:w-auto lg:grid-cols-[repeat(4,auto)]">
11151115
{categoryKeys.map((key, idx) => {
11161116
const categoryType = key as CategoryType
11171117
const category = categories[categoryType]

middleware.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ export default createMiddleware(routing)
66

77
// Simplified matcher pattern
88
export const config = {
9-
matcher: ["/((?!api|_next|_vercel|.*\\.[^/]*$).*)"],
9+
matcher: ["/((?!api|_next|_vercel|.well-known|.*\\.[^/]*$).*)"],
1010
}

public/content/developers/docs/programming-languages/python/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Looking for more resources? Check out [ethereum.org/developers](/developers/).
8484
The following Ethereum-based projects use tools mentioned on this page. The related open-source repositories serve as a good reference for example code and best practices.
8585

8686
- [Yearn Finance](https://yearn.finance/) and [Yearn Vault Contracts repository](https://github.com/yearn/yearn-vaults)
87-
- [Curve](https://curve.fi/) and [Curve smart contracts repository](https://github.com/curvefi/curve-contract)
87+
- [Curve](https://www.curve.finance/) and [Curve smart contracts repository](https://github.com/curvefi/curve-contract)
8888
- [BadgerDAO](https://badger.com/) and [smart contracts using Brownie toolchain](https://github.com/Badger-Finance/badger-system)
8989
- [Sushi](https://sushi.com/) uses [Python in managing and deploying their vesting contracts](https://github.com/sushiswap/sushi-vesting-protocols)
9090
- [Alpha Finance](https://alphafinance.io/), of Alpha Homora fame, uses [Brownie to test and deploy smart contracts](https://github.com/AlphaFinanceLab/alpha-staking-contract)

public/content/guides/how-to-swap-tokens/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Some popular exchanges are:
2222
- [Uniswap](https://app.uniswap.org/#/swap)
2323
- [Sushiswap](https://www.sushi.com/swap)
2424
- [1Inch](https://app.1inch.io/#/1/unified/swap/ETH/DAI)
25-
- [Curve](https://curve.fi/#/ethereum/swap)
25+
- [Curve](https://www.curve.finance/dex/ethereum/swap/)
2626

2727
Interesting? Learn more about what [decentralised finance (DeFi)](/defi/) is and how these new kinds of exchanges work.
2828

src/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ const Footer = ({ lastDeployLocaleTimestamp }: FooterProps) => {
318318
isSecondary
319319
onClick={() => scrollIntoView("body")}
320320
>
321-
<IoChevronUpSharp /> Go to top
321+
<IoChevronUpSharp /> <Translation id="go-to-top" />
322322
</Button>
323323
</div>
324324

src/layouts/Docs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const H4 = (props: HTMLAttributes<HTMLHeadingElement>) => (
6767
const BackToTop = (props: ChildOnlyProp) => (
6868
<div className="display-none mt-12 flex border-t pt-8" {...props}>
6969
<InlineLink href="#top">
70-
<Translation id="back-to-top" />
70+
<Translation id="page-developers-docs:back-to-top" />
7171
</InlineLink>
7272
</div>
7373
)

0 commit comments

Comments
 (0)