From 19b561d908e0d9544c8c96a8422b1d5d00b4fb1b Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Thu, 23 Jul 2026 17:02:49 -0700 Subject: [PATCH 1/5] fix(landing): restore single-paragraph hero copy on home and enterprise --- .../hero/components/hero-header/hero-header.tsx | 13 ------------- apps/sim/app/(landing)/components/hero/hero.tsx | 3 +-- .../components/solutions-hero/solutions-hero.tsx | 1 - .../(landing)/components/solutions-page/types.ts | 7 ------- apps/sim/app/(landing)/enterprise/enterprise.tsx | 6 ++---- 5 files changed, 3 insertions(+), 27 deletions(-) diff --git a/apps/sim/app/(landing)/components/hero/components/hero-header/hero-header.tsx b/apps/sim/app/(landing)/components/hero/components/hero-header/hero-header.tsx index d06e6ca7a88..c2e9b566956 100644 --- a/apps/sim/app/(landing)/components/hero/components/hero-header/hero-header.tsx +++ b/apps/sim/app/(landing)/components/hero/components/hero-header/hero-header.tsx @@ -6,12 +6,6 @@ import { LANDING_HERO_CTA_GAP } from '@/app/(landing)/components/landing-layout' interface LandingHeroHeaderProps { description: string - /** - * Optional second paragraph beneath the description - a self-contained - * definition of the page's subject, kept quotable for answer engines (GEO). - * Omitted by the homepage, so its hero renders unchanged. - */ - definition?: string eyebrow?: ReactNode heading: ReactNode headingId: string @@ -23,7 +17,6 @@ interface LandingHeroHeaderProps { */ export function LandingHeroHeader({ description, - definition, eyebrow, heading, headingId, @@ -44,12 +37,6 @@ export function LandingHeroHeader({ {description}

- {definition ? ( -

- {definition} -

- ) : null} -
diff --git a/apps/sim/app/(landing)/components/hero/hero.tsx b/apps/sim/app/(landing)/components/hero/hero.tsx index f28d618087c..1acd99d6c1f 100644 --- a/apps/sim/app/(landing)/components/hero/hero.tsx +++ b/apps/sim/app/(landing)/components/hero/hero.tsx @@ -90,8 +90,7 @@ export function Hero() { building and managing AI agents. } - description='Sim is an AI agent and workflow builder for teams creating agents that automate real work. Design workflows visually, describe what you need in natural language, or use code for complete control.' - definition='Connect your agents to 1,000+ integrations and every major LLM, then deploy, monitor, and improve them from one collaborative, open-source workspace.' + description='The open-source AI agent and workflow builder. Build, deploy, and manage AI agents across 1,000+ integrations and every major LLM.' />
Date: Thu, 23 Jul 2026 17:06:10 -0700 Subject: [PATCH 2/5] fix(landing): tighten enterprise hero description --- apps/sim/app/(landing)/enterprise/enterprise.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sim/app/(landing)/enterprise/enterprise.tsx b/apps/sim/app/(landing)/enterprise/enterprise.tsx index 21bef04e48e..0ccb1d74b40 100644 --- a/apps/sim/app/(landing)/enterprise/enterprise.tsx +++ b/apps/sim/app/(landing)/enterprise/enterprise.tsx @@ -60,7 +60,7 @@ const ENTERPRISE_CONFIG: SolutionsPageConfig = { hero: { heading: 'Sim is the enterprise AI agent platform for governed workflows.', description: - 'Build, deploy, and govern enterprise AI agents in one AI workspace, with role-based access, approval paths, versioning, monitoring, and full audit trails.', + 'Build, deploy, and govern enterprise AI agents in one AI workspace, with role-based access, approvals, and full audit trails.', summary: 'An enterprise AI agent uses AI models, business data, and connected tools to complete multi-step work within the permissions, approval policies, and human oversight your organization defines. Sim is the open-source AI workspace where IT, operations, and technical teams build, deploy, and govern enterprise AI agents across 1,000+ integrations and every major LLM.', /** From f39ab77c18a8813942dc6558e0dea15ca22cd9fc Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Thu, 23 Jul 2026 17:08:43 -0700 Subject: [PATCH 3/5] revert(landing): restore original home and enterprise hero headings --- apps/sim/app/(landing)/components/hero/hero.tsx | 6 +++--- apps/sim/app/(landing)/enterprise/enterprise.tsx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/sim/app/(landing)/components/hero/hero.tsx b/apps/sim/app/(landing)/components/hero/hero.tsx index 1acd99d6c1f..e591cf4c6b4 100644 --- a/apps/sim/app/(landing)/components/hero/hero.tsx +++ b/apps/sim/app/(landing)/components/hero/hero.tsx @@ -86,11 +86,11 @@ export function Hero() { headingId='hero-heading' heading={ <> - Sim is the AI workspace for
- building and managing AI agents. + Sim is the AI workspace
+ for building AI agents. } - description='The open-source AI agent and workflow builder. Build, deploy, and manage AI agents across 1,000+ integrations and every major LLM.' + description='Open source, with 1,000+ integrations and every major LLM. Build, deploy, and manage agents visually, conversationally, or with code.' />
Date: Thu, 23 Jul 2026 17:11:02 -0700 Subject: [PATCH 4/5] improvement(landing): simplify enterprise hero description --- apps/sim/app/(landing)/enterprise/enterprise.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sim/app/(landing)/enterprise/enterprise.tsx b/apps/sim/app/(landing)/enterprise/enterprise.tsx index a953c77650e..613e6e6378f 100644 --- a/apps/sim/app/(landing)/enterprise/enterprise.tsx +++ b/apps/sim/app/(landing)/enterprise/enterprise.tsx @@ -60,7 +60,7 @@ const ENTERPRISE_CONFIG: SolutionsPageConfig = { hero: { heading: 'Sim is the AI workspace for enterprise AI agents.', description: - 'IT, operations, and technical teams build, deploy, and govern agents in Sim, with SOC2, role-based access, approvals, and full audit trails.', + 'Build, deploy, and govern enterprise AI agents with role-based access, approvals, and full audit trails.', summary: 'An enterprise AI agent uses AI models, business data, and connected tools to complete multi-step work within the permissions, approval policies, and human oversight your organization defines. Sim is the open-source AI workspace where IT, operations, and technical teams build, deploy, and govern enterprise AI agents across 1,000+ integrations and every major LLM.', /** From 51b48a3343aa9e1d88886d9d108a1463daef10f9 Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Thu, 23 Jul 2026 17:15:12 -0700 Subject: [PATCH 5/5] improvement(landing): restore building-and-managing homepage headline --- apps/sim/app/(landing)/components/hero/hero.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/sim/app/(landing)/components/hero/hero.tsx b/apps/sim/app/(landing)/components/hero/hero.tsx index e591cf4c6b4..8036e4b082c 100644 --- a/apps/sim/app/(landing)/components/hero/hero.tsx +++ b/apps/sim/app/(landing)/components/hero/hero.tsx @@ -86,8 +86,8 @@ export function Hero() { headingId='hero-heading' heading={ <> - Sim is the AI workspace
- for building AI agents. + Sim is the AI workspace for
+ building and managing AI agents. } description='Open source, with 1,000+ integrations and every major LLM. Build, deploy, and manage agents visually, conversationally, or with code.'