Files
wehub-resource-sync d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

78 lines
2.9 KiB
TypeScript

import { SolutionsPage, type SolutionsPageConfig } from '@/app/(landing)/components'
/**
* Compliance solution page - a reference consumer of {@link SolutionsPage}.
*
* The whole page is one typed {@link SolutionsPageConfig} rendered inside the
* shared route-group layout's chrome. Visual slots are `null`, so each renders the
* layout's reserved placeholder panel; a real page swaps in its own client
* island without touching the layout.
*/
const COMPLIANCE_CONFIG: SolutionsPageConfig = {
module: 'Compliance',
path: '/solutions/compliance',
hero: {
heading: 'Automate evidence, control checks, and audit reports with Sim agents.',
description:
'Compliance teams build AI agents in Sim, the open-source AI workspace, that monitor controls and assemble a clean, defensible record, keeping the organization continuously audit-ready instead of scrambling once a year.',
summary:
'Sim is the open-source AI workspace where compliance teams build, deploy, and manage AI agents that automate evidence collection, control monitoring, and reporting, keeping the organization continuously audit-ready across 1,000+ integrations.',
visual: null,
},
rows: [
{
id: 'evidence',
title: 'Automate the evidence.',
subtitle: 'Sim agents collect and check the proof so audits stop being fire drills.',
cta: { label: 'See compliance agents', href: '/signup' },
cards: [
{
title: 'Collect evidence',
description:
'Sim gathers screenshots, logs, and records from your systems on a schedule.',
visual: null,
},
{
title: 'Monitor controls',
description: 'Sim continuously checks controls and flags drift the moment it appears.',
visual: null,
},
{
title: 'Check policies',
description:
'Sim reviews changes against your policies and raises anything out of bounds.',
visual: null,
},
],
},
{
id: 'prove',
title: 'Prove control.',
subtitle: 'Sim turns continuous monitoring into a clean, defensible record.',
cta: { label: 'Explore reporting', href: '/signup' },
cards: [
{
title: 'Review access',
description: 'Sim runs periodic access reviews and routes exceptions for sign-off.',
visual: null,
},
{
title: 'Generate reports',
description:
'Sim assembles audit-ready reports from live evidence, not stale spreadsheets.',
visual: null,
},
{
title: 'Trace every action',
description: 'Sim logs every run block by block, so auditors see exactly what happened.',
visual: null,
},
],
},
],
}
export default function ComplianceSolution() {
return <SolutionsPage config={COMPLIANCE_CONFIG} />
}