Skip to content
Merged
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
7 changes: 7 additions & 0 deletions src/app/products/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,13 @@ export default async function ProviderPage({
params: Promise<Params>;
}) {
const { slug } = await params;
// Merkle rebranded to Blink Labs; 308 to the successor product page.
// Duplicated from generateMetadata on purpose: the page component is
// the one whose result gets ISR-cached, and metadata-only redirects
// left a cached 404 behind (seen live 2026-07-11).
if (slug === "merkle") {
permanentRedirect("/products/blinklabs");
}
// /hyperliquid/<slug> is the canonical detail surface for tracked HL
// frontends (12-month focus chart + peer group + KPI strip). Redirect
// /products/<hl-slug> straight there so backlinks + old SERP entries
Expand Down
Loading