Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -23,7 +17,6 @@ interface LandingHeroHeaderProps {
*/
export function LandingHeroHeader({
description,
definition,
eyebrow,
heading,
headingId,
Expand All @@ -44,12 +37,6 @@ export function LandingHeroHeader({
{description}
</p>

{definition ? (
<p className='w-full min-w-0 max-w-[58ch] text-pretty text-[var(--text-muted)] text-base leading-[1.5]'>
{definition}
</p>
) : null}

<div className={cn('max-sm:w-full', LANDING_HERO_CTA_GAP)}>
<HeroCta />
</div>
Expand Down
3 changes: 1 addition & 2 deletions apps/sim/app/(landing)/components/hero/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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='Open source, with 1,000+ integrations and every major LLM. Build, deploy, and manage agents visually, conversationally, or with code.'
/>

<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ export function SolutionsHero({ hero, align = 'left', variant = 'solutions' }: S
heading={hero.heading}
headingId='solutions-hero-heading'
description={hero.description}
definition={hero.definition}
/>

<div
Expand Down
7 changes: 0 additions & 7 deletions apps/sim/app/(landing)/components/solutions-page/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,6 @@ export interface SolutionsHeroConfig {
heading: string
/** Supporting description beneath the heading, in the body color. */
description: string
/**
* Optional visible definition of the page's subject, rendered as a second
* paragraph beneath {@link description}. Self-contained and answer-first so
* answer engines can quote it whole ("What is an enterprise AI agent?").
* Currently honored by the `home` hero variant.
*/
definition?: string
/**
* ~50-word sr-only atomic summary for AI citation (GEO). Names "Sim" explicitly
* and states what the module is, who it's for, and what it does.
Expand Down
8 changes: 3 additions & 5 deletions apps/sim/app/(landing)/enterprise/enterprise.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,11 @@ const ENTERPRISE_CONFIG: SolutionsPageConfig = {
seoDescription: ENTERPRISE_SEO_DESCRIPTION,
offersFreeTier: false,
hero: {
heading: 'Sim is the enterprise AI agent platform for governed workflows.',
heading: 'Sim is the AI workspace for enterprise AI agents.',
description:
'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.',
definition:
'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.',
'Build, deploy, and govern enterprise AI agents with role-based access, approvals, and full audit trails.',
summary:
'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.',
'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.',
Comment thread
waleedlatif1 marked this conversation as resolved.
/**
* The shared {@link PlatformHeroVisual} backdrop-plus-demo-window
* composition, filled by the {@link EnterprisePlatformLoop} - a sibling of
Expand Down
Loading