Skip to content

Commit c1c18d0

Browse files
committed
change requests
1 parent f7a6b2c commit c1c18d0

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

app/[locale]/10years/page.tsx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ const Page = async ({ params }: { params: Promise<{ locale: Lang }> }) => {
9090
</div>
9191
</div>
9292

93-
<div className="w-full px-8 py-8">
93+
<div className="md: w-full px-4 px-8 py-8">
9494
<div className="flex min-h-[500px] flex-col items-center gap-4 rounded-4xl bg-radial-a px-8 pt-8 lg:px-14 lg:pt-14">
9595
<div className="flex max-w-[770px] flex-col gap-4 text-center">
9696
<h2 className="text-4xl font-black">Join the party</h2>
@@ -126,7 +126,8 @@ const Page = async ({ params }: { params: Promise<{ locale: Lang }> }) => {
126126
value={key}
127127
className="whitespace-nowrap border-0 text-primary"
128128
>
129-
{data.label}
129+
{data.label}{" "}
130+
<span className="text-sm">({data.events.length})</span>
130131
</TabsTrigger>
131132
))}
132133
</TabsList>
@@ -185,9 +186,11 @@ const Page = async ({ params }: { params: Promise<{ locale: Lang }> }) => {
185186
</div>
186187
<LinkOverlay
187188
href={event.eventLink}
188-
className="text-sm text-body-medium no-underline"
189+
className="text-sm no-underline"
190+
target="_blank"
191+
rel="noopener noreferrer"
189192
>
190-
LINK TO EVENT
193+
Go to event
191194
</LinkOverlay>
192195
</LinkBox>
193196
))}
@@ -277,7 +280,7 @@ const Page = async ({ params }: { params: Promise<{ locale: Lang }> }) => {
277280
className={cn(
278281
"w-[70%] rounded-2xl p-8",
279282
index % 2 === 0 && "ml-auto",
280-
index !== 0 && "-mt-20",
283+
index !== 0 && "-mt-10",
281284
zIndexClasses[index],
282285
adoptionStyles[index % 3]
283286
)}

app/[locale]/_components/home.tsx

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,9 @@ const HomePage = ({
122122
<MainArticle className="flex w-full flex-col items-center" dir={dir}>
123123
<BannerNotification shouldShow={locale === "en"}>
124124
<p>
125-
Let&apos;s celebrate 10 years of Ethereum! How did ethereum change
126-
your life? -{" "}
127-
<Link
128-
href="https://ethereumstory.paperform.co/"
129-
className="text-white"
130-
>
131-
share your story
125+
10 years of Ethereum! -{" "}
126+
<Link href="/10years/" className="text-white">
127+
Join us to celebrate 10 years of Ethereum!
132128
</Link>
133129
</p>
134130
</BannerNotification>

0 commit comments

Comments
 (0)