Skip to content

Commit 3dcd60f

Browse files
committed
chore: cleanup docs buttons
1 parent 8f8fd7c commit 3dcd60f

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

apps/portal/src/app/page.tsx

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -165,17 +165,17 @@ function ReferenceSection() {
165165
function LearningResourcesSection() {
166166
return (
167167
<section>
168-
<SectionTitle anchorId="learning" title="Learning Resources" />
168+
<SectionTitle anchorId="learning" title="Documentation" />
169169
<Grid className="md:grid-cols-1 lg:grid-cols-3">
170170
<ArticleCardIndex
171171
description="Create and manage crypto wallets"
172-
href="/connect"
172+
href="/wallets"
173173
icon={ConnectIcon}
174174
title="Wallets"
175175
/>
176176
<ArticleCardIndex
177177
description="Bridge and onramp tokens on any chain"
178-
href="/pay"
178+
href="/payments"
179179
icon={BridgeIcon}
180180
title="Payments"
181181
/>
@@ -242,13 +242,11 @@ function ArticleCardIndex(props: {
242242
href={props.href}
243243
target={props.external ? "_blank" : undefined}
244244
>
245-
<div className="flex items-center gap-3">
246-
{props.icon && <props.icon className="text-muted-foreground" />}
245+
<div className="flex items-start gap-3">
246+
{props.icon && <props.icon className="text-foreground size-6" />}
247247
<div className="flex flex-col gap-0.5">
248-
<h3 className="font-semibold text-foreground text-lg">
249-
{props.title}
250-
</h3>
251-
<p className="text-muted-foreground">{props.description}</p>
248+
<h3 className="font-semibold text-foreground">{props.title}</h3>
249+
<p className="text-sm text-muted-foreground">{props.description}</p>
252250
</div>
253251
</div>
254252
</Link>

0 commit comments

Comments
 (0)