Skip to content

Commit dbbfce8

Browse files
authored
fix(landing): restore single-paragraph hero copy on home and enterprise (#5906)
* fix(landing): restore single-paragraph hero copy on home and enterprise * fix(landing): tighten enterprise hero description * revert(landing): restore original home and enterprise hero headings * improvement(landing): simplify enterprise hero description * improvement(landing): restore building-and-managing homepage headline
1 parent 79c57bf commit dbbfce8

5 files changed

Lines changed: 4 additions & 28 deletions

File tree

apps/sim/app/(landing)/components/hero/components/hero-header/hero-header.tsx

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ import { LANDING_HERO_CTA_GAP } from '@/app/(landing)/components/landing-layout'
66

77
interface LandingHeroHeaderProps {
88
description: string
9-
/**
10-
* Optional second paragraph beneath the description - a self-contained
11-
* definition of the page's subject, kept quotable for answer engines (GEO).
12-
* Omitted by the homepage, so its hero renders unchanged.
13-
*/
14-
definition?: string
159
eyebrow?: ReactNode
1610
heading: ReactNode
1711
headingId: string
@@ -23,7 +17,6 @@ interface LandingHeroHeaderProps {
2317
*/
2418
export function LandingHeroHeader({
2519
description,
26-
definition,
2720
eyebrow,
2821
heading,
2922
headingId,
@@ -44,12 +37,6 @@ export function LandingHeroHeader({
4437
{description}
4538
</p>
4639

47-
{definition ? (
48-
<p className='w-full min-w-0 max-w-[58ch] text-pretty text-[var(--text-muted)] text-base leading-[1.5]'>
49-
{definition}
50-
</p>
51-
) : null}
52-
5340
<div className={cn('max-sm:w-full', LANDING_HERO_CTA_GAP)}>
5441
<HeroCta />
5542
</div>

apps/sim/app/(landing)/components/hero/hero.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,7 @@ export function Hero() {
9090
building and managing AI agents.
9191
</>
9292
}
93-
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.'
94-
definition='Connect your agents to 1,000+ integrations and every major LLM, then deploy, monitor, and improve them from one collaborative, open-source workspace.'
93+
description='Open source, with 1,000+ integrations and every major LLM. Build, deploy, and manage agents visually, conversationally, or with code.'
9594
/>
9695

9796
<div

apps/sim/app/(landing)/components/solutions-page/components/solutions-hero/solutions-hero.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ export function SolutionsHero({ hero, align = 'left', variant = 'solutions' }: S
6767
heading={hero.heading}
6868
headingId='solutions-hero-heading'
6969
description={hero.description}
70-
definition={hero.definition}
7170
/>
7271

7372
<div

apps/sim/app/(landing)/components/solutions-page/types.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,6 @@ export interface SolutionsHeroConfig {
2929
heading: string
3030
/** Supporting description beneath the heading, in the body color. */
3131
description: string
32-
/**
33-
* Optional visible definition of the page's subject, rendered as a second
34-
* paragraph beneath {@link description}. Self-contained and answer-first so
35-
* answer engines can quote it whole ("What is an enterprise AI agent?").
36-
* Currently honored by the `home` hero variant.
37-
*/
38-
definition?: string
3932
/**
4033
* ~50-word sr-only atomic summary for AI citation (GEO). Names "Sim" explicitly
4134
* and states what the module is, who it's for, and what it does.

apps/sim/app/(landing)/enterprise/enterprise.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,11 @@ const ENTERPRISE_CONFIG: SolutionsPageConfig = {
5858
seoDescription: ENTERPRISE_SEO_DESCRIPTION,
5959
offersFreeTier: false,
6060
hero: {
61-
heading: 'Sim is the enterprise AI agent platform for governed workflows.',
61+
heading: 'Sim is the AI workspace for enterprise AI agents.',
6262
description:
63-
'Build, deploy, and govern enterprise AI agents in one AI workspace. Connect every major LLM and 1,000+ integrations with role-based access, approval paths, versioning, monitoring, and complete audit trails.',
64-
definition:
65-
'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.',
63+
'Build, deploy, and govern enterprise AI agents with role-based access, approvals, and full audit trails.',
6664
summary:
67-
'Sim is the open-source AI workspace where IT, operations, and technical teams build, deploy, and govern enterprise AI agents. Connect 1,000+ integrations and every major LLM, with role-based access, approvals, versioning, and full audit trails.',
65+
'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.',
6866
/**
6967
* The shared {@link PlatformHeroVisual} backdrop-plus-demo-window
7068
* composition, filled by the {@link EnterprisePlatformLoop} - a sibling of

0 commit comments

Comments
 (0)