Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added blink.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 12 additions & 6 deletions src/components/chain-rpc-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,15 @@ function LeaderCard({
>
Fastest · 24h p50
</p>
<div className="mt-2 flex items-center gap-2 min-w-0">
<Link
href={`/products/${best.provider}`}
className="mt-2 flex items-center gap-2 min-w-0 group"
>
<ProviderLogo slug={best.provider} name={best.providerName} size={20} />
<span className="font-medium text-ink text-sm truncate">
<span className="font-medium text-ink text-sm truncate group-hover:underline underline-offset-2">
{best.providerName}
</span>
</div>
</Link>
<p className="mt-1 text-2xl font-semibold text-ink tabular-nums leading-none">
{fmtMs(best.p50Ms)}
</p>
Expand Down Expand Up @@ -156,16 +159,19 @@ function RegionCard({
</p>
{best ? (
<>
<div className="mt-2 flex items-center gap-2 min-w-0">
<Link
href={`/products/${best.provider}`}
className="mt-2 flex items-center gap-2 min-w-0 group"
>
<ProviderLogo
slug={best.provider}
name={best.providerName}
size={20}
/>
<span className="font-medium text-ink text-sm truncate">
<span className="font-medium text-ink text-sm truncate group-hover:underline underline-offset-2">
{best.providerName}
</span>
</div>
</Link>
<p className="mt-1 text-xl font-semibold text-ink-soft tabular-nums leading-none">
{fmtMs(best.p50Ms)}
</p>
Expand Down
Loading