Skip to content

Commit bc70a2e

Browse files
authored
Merge pull request #16182 from ethereum/staging
Release v10.12.0
2 parents 76e093f + 764a78a commit bc70a2e

File tree

858 files changed

+3642
-3028
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

858 files changed

+3642
-3028
lines changed

app/[locale]/10years/_components/NFTMintCard/index.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@ import { useTranslations } from "next-intl"
22

33
import { Alert, AlertContent, AlertTitle } from "@/components/ui/alert"
44
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
5+
import Link from "@/components/ui/Link"
56

67
import { cn } from "@/lib/utils/cn"
78

89
import Curved10YearsText from "@/public/images/10-year-anniversary/10y-curved-heading.svg"
910

11+
const TORCH_CONTRACT_ADDRESS = "0x26d85a13212433fe6a8381969c2b0db390a0b0ae"
12+
1013
interface NFTMintCardProps {
1114
className?: string
1215
}
@@ -71,6 +74,12 @@ const NFTMintCard = ({ className }: NFTMintCardProps) => {
7174
<p className="text-primary">
7275
{t("page-10-year-mint-card-ended-description")}
7376
</p>
77+
<Link
78+
href={`https://opensea.io/item/ethereum/${TORCH_CONTRACT_ADDRESS}`}
79+
title={TORCH_CONTRACT_ADDRESS}
80+
>
81+
{t("page-10-year-nft-link-label")}
82+
</Link>
7483
</AlertContent>
7584
</Alert>
7685
</CardContent>

app/[locale]/developers/learning-tools/_components/learning-tools.tsx

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,8 @@ import DappWorldImage from "@/public/images/dev-tools/dapp-world.png"
2828
import EthDotBuildImage from "@/public/images/dev-tools/eth-dot-build.png"
2929
import LearnWeb3Image from "@/public/images/dev-tools/learnweb3.png"
3030
import MetaschoolImage from "@/public/images/dev-tools/metaschool.png"
31-
import NFTSchoolImage from "@/public/images/dev-tools/nftschool.png"
3231
import NodeGuardiansImage from "@/public/images/dev-tools/node-guardians.jpg"
3332
import EthernautImage from "@/public/images/dev-tools/oz.png"
34-
import PlatziImage from "@/public/images/dev-tools/platzi.png"
3533
import QuestbookImage from "@/public/images/dev-tools/questbook.png"
3634
import RemixImage from "@/public/images/dev-tools/remix.png"
3735
import ReplitImage from "@/public/images/dev-tools/replit.png"
@@ -317,33 +315,6 @@ const LearningToolsPage = () => {
317315
background: "#f6f7f9",
318316
subjects: ["Solidity", "web3"],
319317
},
320-
{
321-
name: "NFT School",
322-
description: t(
323-
"page-developers-learning-tools:page-learning-tools-nftschool-description"
324-
),
325-
url: "https://nftschool.dev/",
326-
image: NFTSchoolImage,
327-
alt: t(
328-
"page-developers-learning-tools:page-learning-tools-nftschool-logo-alt"
329-
),
330-
background: "#111f29",
331-
subjects: ["Solidity", "web3"],
332-
},
333-
{
334-
name: "Platzi",
335-
description: t(
336-
"page-developers-learning-tools:page-learning-tools-platzi-description"
337-
),
338-
url: "https://platzi.com/escuela/escuela-blockchain/",
339-
image: PlatziImage,
340-
alt: t(
341-
"page-developers-learning-tools:page-learning-tools-platzi-logo-alt"
342-
),
343-
background: "#121f3d",
344-
subjects: ["Solidity", "web3"],
345-
locales: ["es"],
346-
},
347318
{
348319
name: "Speed Run Ethereum",
349320
description: t(

app/[locale]/developers/page.tsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { Fragment } from "react"
2-
import { Check } from "lucide-react"
32
import { getTranslations } from "next-intl/server"
43

54
import type { Lang } from "@/lib/types"
@@ -10,6 +9,7 @@ import BigNumber from "@/components/BigNumber"
109
import { CopyButton } from "@/components/CopyToClipboard"
1110
import FeedbackCard from "@/components/FeedbackCard"
1211
import HubHero from "@/components/Hero/HubHero"
12+
import { CheckCircle } from "@/components/icons/CheckCircle"
1313
import { Image } from "@/components/Image"
1414
import MainArticle from "@/components/MainArticle"
1515
import { ButtonLink } from "@/components/ui/buttons/Button"
@@ -99,13 +99,7 @@ const WhyGrid = () => {
9999
>
100100
{items.map(({ heading, description }) => (
101101
<div className="flex gap-1.5" key={heading}>
102-
<div className="my-1 grid h-fit place-items-center rounded-full bg-success/20 p-1">
103-
<Check
104-
className="size-3 stroke-[4] text-success"
105-
strokeLinecap="square"
106-
strokeLinejoin="miter"
107-
/>
108-
</div>
102+
<CheckCircle />
109103
<div className="space-y-1">
110104
<h3 className="text-lg">{heading}</h3>
111105
<p className="text-body-medium">{description}</p>
Lines changed: 11 additions & 0 deletions
Loading
Lines changed: 15 additions & 0 deletions
Loading

app/[locale]/founders/logos/base.svg

Lines changed: 4 additions & 0 deletions
Loading
Lines changed: 12 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)