From 01c65a48a8860f4d1aaabcc3254def9680cae230 Mon Sep 17 00:00:00 2001 From: Paul Wackerow <54227730+wackerow@users.noreply.github.com> Date: Thu, 12 Jun 2025 09:19:25 -0700 Subject: [PATCH 1/3] fix: string formatting --- src/data/community-events.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/community-events.json b/src/data/community-events.json index 1ae5d5cf0a4..09bc8abd1c9 100644 --- a/src/data/community-events.json +++ b/src/data/community-events.json @@ -113,7 +113,7 @@ "endDate": "2025-06-25", "href": "https://nft.nyc", "location": "NYC, USA", - "description": ""The Super Bowl of NFTs" - Register now for NFT.NYC's 8th annual event. 50,000+ Alumni, the leading speakers and the best projects in the NFT ecosystem.", + "description": "'The Super Bowl of NFTs' - Register now for NFT.NYC's 8th annual event. 50,000+ Alumni, the leading speakers and the best projects in the NFT ecosystem.", "imageUrl": "https://www.nft.nyc/hubfs/nftnyc2021-eventbrite-header.png" }, { From 5af5ed0fcbf240dc0631f1defeb50550ef99324b Mon Sep 17 00:00:00 2001 From: Corwin Smith Date: Thu, 12 Jun 2025 10:21:48 -0600 Subject: [PATCH 2/3] fix italy's --- src/data/community-events.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/community-events.json b/src/data/community-events.json index 09bc8abd1c9..56c5494124b 100644 --- a/src/data/community-events.json +++ b/src/data/community-events.json @@ -248,7 +248,7 @@ "endDate": "2025-06-24", "href": "https://ethmilan.xyz", "location": "Milan, ITALY", - "description": "ETHMilan 2025 – Italy's Largest ETH & Web3 Conference", + "description": "ETHMilan 2025 – Italy's Largest ETH & Web3 Conference", "imageUrl": "https://cdn.prod.website-files.com/677e49dfe7df51bec6e5ba71/67b58ffe31d5fe8d4e54880e__DSC0914.jpeg" }, { From 3f8a166aac7549c730e0d20f94196e38cd53a15c Mon Sep 17 00:00:00 2001 From: Paul Wackerow <54227730+wackerow@users.noreply.github.com> Date: Fri, 13 Jun 2025 10:07:53 -0700 Subject: [PATCH 3/3] fix: use next/image --- .../10years/_components/TenYearHomeBanner.tsx | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/app/[locale]/10years/_components/TenYearHomeBanner.tsx b/app/[locale]/10years/_components/TenYearHomeBanner.tsx index bb6e26432ed..640bbbfaba1 100644 --- a/app/[locale]/10years/_components/TenYearHomeBanner.tsx +++ b/app/[locale]/10years/_components/TenYearHomeBanner.tsx @@ -1,11 +1,13 @@ import { getTranslations } from "next-intl/server" +import { Image } from "@/components/Image" import ParallaxImage from "@/components/Image/ParallaxImage" import { ButtonLink } from "@/components/ui/buttons/Button" import Countdown from "./CountDown" import { getTimeUnitTranslations } from "./utils" +import TenYearBackgroundImage from "@/public/images/10-year-anniversary/10-year-background.png" import TenYearGraphicImage from "@/public/images/10-year-anniversary/10-year-logo.png" import TenYearDesktopText from "@/public/images/10-year-anniversary/10yeartext.svg" import TenYearMobileText from "@/public/images/10-year-anniversary/10yeartext-mobile.svg" @@ -19,8 +21,16 @@ const TenYearHomeBanner = async ({ locale }: { locale: string }) => { const timeLeftLabels = await getTimeUnitTranslations(locale) return ( -
-
+
+
+ +