From 6e05726a6246a1e9d8133def2ddbbb221bec74fc Mon Sep 17 00:00:00 2001 From: waleed Date: Wed, 7 Jan 2026 08:30:10 -0800 Subject: [PATCH 1/4] feat(seo): updated out-of-date site metadata, removed unused static assets, updated emails --- .../(landing)/components/structured-data.tsx | 40 ++-- .../sim/app/.well-known/security.txt/route.ts | 42 +++++ apps/sim/app/llms-full.txt/route.ts | 175 ++++++++++++++++++ apps/sim/app/llms.txt/route.ts | 94 ++++++---- apps/sim/app/manifest.ts | 2 +- apps/sim/app/page.tsx | 10 +- apps/sim/app/robots.ts | 78 ++++++++ apps/sim/app/security.txt/route.ts | 12 ++ apps/sim/app/sitemap.ts | 9 - apps/sim/lib/branding/metadata.ts | 6 +- apps/sim/public/icon.svg | 8 - apps/sim/public/logo-sim.svg | 7 - apps/sim/public/robots.txt | 41 ---- apps/sim/public/sim.png | Bin 1292212 -> 0 bytes apps/sim/public/sim.svg | 8 - apps/sim/public/social/facebook.png | Bin 142298 -> 332638 bytes apps/sim/public/social/instagram.png | Bin 190592 -> 0 bytes apps/sim/public/social/twitter.png | Bin 151243 -> 332638 bytes helm/sim/Chart.yaml | 2 +- packages/python-sdk/pyproject.toml | 2 +- packages/python-sdk/setup.py | 2 +- 21 files changed, 388 insertions(+), 150 deletions(-) create mode 100644 apps/sim/app/.well-known/security.txt/route.ts create mode 100644 apps/sim/app/llms-full.txt/route.ts create mode 100644 apps/sim/app/robots.ts create mode 100644 apps/sim/app/security.txt/route.ts delete mode 100644 apps/sim/public/icon.svg delete mode 100644 apps/sim/public/logo-sim.svg delete mode 100644 apps/sim/public/robots.txt delete mode 100644 apps/sim/public/sim.png delete mode 100644 apps/sim/public/sim.svg delete mode 100644 apps/sim/public/social/instagram.png diff --git a/apps/sim/app/(landing)/components/structured-data.tsx b/apps/sim/app/(landing)/components/structured-data.tsx index 5afc2caa57..bd4bedd573 100644 --- a/apps/sim/app/(landing)/components/structured-data.tsx +++ b/apps/sim/app/(landing)/components/structured-data.tsx @@ -42,17 +42,9 @@ export default function StructuredData() { publisher: { '@id': 'https://sim.ai/#organization', }, - potentialAction: [ - { - '@type': 'SearchAction', - '@id': 'https://sim.ai/#searchaction', - target: { - '@type': 'EntryPoint', - urlTemplate: 'https://sim.ai/search?q={search_term_string}', - }, - 'query-input': 'required name=search_term_string', - }, - ], + // Note: SearchAction removed - no public /search page exists + // Add back when search functionality is implemented: + // potentialAction: [{ '@type': 'SearchAction', target: { urlTemplate: '...' } }] inLanguage: 'en-US', }, { @@ -110,7 +102,7 @@ export default function StructuredData() { name: 'Community Plan', price: '0', priceCurrency: 'USD', - priceValidUntil: '2025-12-31', + priceValidUntil: '2026-12-31', itemCondition: 'https://schema.org/NewCondition', availability: 'https://schema.org/InStock', seller: { @@ -134,7 +126,7 @@ export default function StructuredData() { unitText: 'MONTH', billingIncrement: 1, }, - priceValidUntil: '2025-12-31', + priceValidUntil: '2026-12-31', itemCondition: 'https://schema.org/NewCondition', availability: 'https://schema.org/InStock', seller: { @@ -154,7 +146,7 @@ export default function StructuredData() { unitText: 'MONTH', billingIncrement: 1, }, - priceValidUntil: '2025-12-31', + priceValidUntil: '2026-12-31', itemCondition: 'https://schema.org/NewCondition', availability: 'https://schema.org/InStock', seller: { @@ -181,11 +173,12 @@ export default function StructuredData() { 'Scheduled workflows', 'Event triggers', ], + // Screenshot using the social sharing image which exists screenshot: [ { '@type': 'ImageObject', - url: 'https://sim.ai/screenshots/workflow-builder.png', - caption: 'Sim workflow builder interface', + url: 'https://sim.ai/social/facebook.png', + caption: 'Sim AI agent workflow builder interface', }, ], }, @@ -223,16 +216,9 @@ export default function StructuredData() { } return ( - <> -