From aabf07f88c78b2d0ff4b8c8ca69cdd5b738d92bd Mon Sep 17 00:00:00 2001 From: Nuno Loureiro Date: Fri, 1 May 2026 06:56:55 +0100 Subject: [PATCH] fix(seo): use CollectionPage for /layer-2/networks JSON-LD MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Align with the pattern established in #17721 for /wallets/find-wallet — list/comparison pages should be typed as CollectionPage rather than WebPage. Closes #17724 --- app/[locale]/layer-2/networks/page-jsonld.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/[locale]/layer-2/networks/page-jsonld.tsx b/app/[locale]/layer-2/networks/page-jsonld.tsx index b9a59d2c52c..d90a04a0d03 100644 --- a/app/[locale]/layer-2/networks/page-jsonld.tsx +++ b/app/[locale]/layer-2/networks/page-jsonld.tsx @@ -27,7 +27,7 @@ export default async function Layer2NetworksPageJsonLD({ "@graph": [ ...BASE_GRAPH_NODES, { - "@type": "WebPage", + "@type": "CollectionPage", "@id": url, name: t("page-layer-2-networks-meta-title"), description: t("page-layer-2-networks-hero-description"),