From 58dae5609b5273451bcf702b726336042865ec5c Mon Sep 17 00:00:00 2001 From: Bjorn Lammers Date: Wed, 23 Apr 2025 13:33:04 +0200 Subject: [PATCH] refactor(web): remove structured data schema from homepage --- web/src/app/page.tsx | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/web/src/app/page.tsx b/web/src/app/page.tsx index f6f634ed..96cbd976 100644 --- a/web/src/app/page.tsx +++ b/web/src/app/page.tsx @@ -48,29 +48,8 @@ export default async function Home() { const recentIcons = await getRecentlyAddedIcons(10) const stars = await getGitHubStars() - // Collection schema for the homepage - const collectionSchema = { - "@context": "https://schema.org", - "@type": "CollectionPage", - "name": `${SITE_NAME} Collection - ${SITE_TAGLINE}`, - "description": getHomeDescription(totalIcons), - "url": WEB_URL, - "numberOfItems": totalIcons, - "mainEntity": { - "@type": "CreativeWork", - "name": SITE_NAME, - "description": getHomeDescription(totalIcons), - "creator": { - "@type": "Organization", - "name": ORGANIZATION_NAME, - "url": GITHUB_URL - } - } - } - return ( <> -