diff --git a/app/[locale]/10years/_components/NFTMintCard/index.tsx b/app/[locale]/10years/_components/NFTMintCard/index.tsx index 72a881597d6..835bf9d439c 100644 --- a/app/[locale]/10years/_components/NFTMintCard/index.tsx +++ b/app/[locale]/10years/_components/NFTMintCard/index.tsx @@ -2,11 +2,14 @@ import { useTranslations } from "next-intl" import { Alert, AlertContent, AlertTitle } from "@/components/ui/alert" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" +import Link from "@/components/ui/Link" import { cn } from "@/lib/utils/cn" import Curved10YearsText from "@/public/images/10-year-anniversary/10y-curved-heading.svg" +const TORCH_CONTRACT_ADDRESS = "0x26d85a13212433fe6a8381969c2b0db390a0b0ae" + interface NFTMintCardProps { className?: string } @@ -71,6 +74,12 @@ const NFTMintCard = ({ className }: NFTMintCardProps) => {
{t("page-10-year-mint-card-ended-description")}
+ + {t("page-10-year-nft-link-label")} + diff --git a/src/intl/en/page-10-year-anniversary.json b/src/intl/en/page-10-year-anniversary.json index a39e2b782ca..9b69ce1c5e5 100644 --- a/src/intl/en/page-10-year-anniversary.json +++ b/src/intl/en/page-10-year-anniversary.json @@ -125,5 +125,6 @@ "page-10-year-mint-card-description": "Celebrate a decade of decentralization with a free, limited-time 10th anniversary NFT. Mint yours before time runs out.", "page-10-year-mint-card-ended-title": "The claim period has ended", "page-10-year-mint-card-ended-description": "Thank you all for joining the celebration", - "page-10-year-video-aria-label": "10th anniversary video" + "page-10-year-video-aria-label": "10th anniversary video", + "page-10-year-nft-link-label": "View Ten Years Of Ethereum NFT on OpenSea" }