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
18 changes: 18 additions & 0 deletions apps/sim/app/(landing)/integrations/(shell)/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,24 @@ export default async function IntegrationPage({ params }: { params: Promise<{ sl
</>
)}

{/* AI-generated content disclaimer (integration-specific) */}
{landingContent?.aiDisclaimer && (
<>
<section aria-labelledby='ai-disclaimer-heading' className='px-6 py-10'>
<h2
id='ai-disclaimer-heading'
className='mb-4 text-[20px] text-white leading-[100%] tracking-[-0.02em]'
>
AI-generated content
</h2>
<p className='max-w-[700px] text-[15px] text-[var(--landing-text-body)] leading-[150%] tracking-[0.02em]'>
{landingContent.aiDisclaimer}
</p>
</section>
<div className='h-px w-full bg-[var(--landing-bg-elevated)]' />
</>
)}

{/* How to automate */}
<section aria-labelledby='how-it-works-heading' className='px-6 py-10'>
<h2
Expand Down
3 changes: 2 additions & 1 deletion apps/sim/app/(landing)/integrations/data/integrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -13528,7 +13528,8 @@
"privacy": {
"body": "Sim requests only the Slack permissions its actions and triggers need, and never shows private channel names or messages to people who are not members of those channels in Slack.",
"href": "/privacy"
}
},
"aiDisclaimer": "Sim agents use AI models to generate messages and responses sent to Slack. AI-generated content can be inaccurate or incomplete — review automated outputs before relying on them, especially for important communications."
}
},
{
Expand Down
2 changes: 2 additions & 0 deletions apps/sim/app/(landing)/integrations/data/landing-content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,7 @@ export const INTEGRATION_LANDING_CONTENT: Record<string, IntegrationLandingConte
body: 'Sim requests only the Slack permissions its actions and triggers need, and never shows private channel names or messages to people who are not members of those channels in Slack.',
href: '/privacy',
},
aiDisclaimer:
'Sim agents use AI models to generate messages and responses sent to Slack. AI-generated content can be inaccurate or incomplete — review automated outputs before relying on them, especially for important communications.',
},
}
5 changes: 5 additions & 0 deletions apps/sim/app/(landing)/integrations/data/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ export interface IntegrationLandingContent {
body: string
href: string
}
/**
* Disclaimer about AI-generated content, required by some marketplaces for
* apps with an AI component (e.g. Slack's AI-components guideline).
*/
aiDisclaimer?: string
}

export interface Integration {
Expand Down
Loading