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 (
<>
-