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
80 lines
2.9 KiB
TypeScript
80 lines
2.9 KiB
TypeScript
import { SolutionsPage, type SolutionsPageConfig } from '@/app/(landing)/components'
|
|
|
|
/**
|
|
* IT 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 IT_CONFIG: SolutionsPageConfig = {
|
|
module: 'IT',
|
|
path: '/solutions/it',
|
|
hero: {
|
|
heading: 'Automate ticket triage, access, and monitoring with Sim agents.',
|
|
description:
|
|
'IT teams build AI agents in Sim, the open-source AI workspace, with the governance, access controls, and audit trails IT needs, across 1,000+ integrations and every major LLM.',
|
|
summary:
|
|
'Sim is the open-source AI workspace where IT teams build, deploy, and manage AI agents that automate ticket triage, access provisioning, and infrastructure monitoring, connecting 1,000+ integrations and every major LLM under IT-grade governance.',
|
|
visual: null,
|
|
},
|
|
rows: [
|
|
{
|
|
id: 'service-desk',
|
|
title: 'Automate the service desk.',
|
|
subtitle: 'Sim agents handle the repetitive front line so your team works on what matters.',
|
|
cta: { label: 'See IT agents', href: '/signup' },
|
|
cards: [
|
|
{
|
|
title: 'Triage tickets',
|
|
description:
|
|
'Sim routes, tags, and resolves incoming tickets across your help desk automatically.',
|
|
visual: null,
|
|
},
|
|
{
|
|
title: 'Provision access',
|
|
description:
|
|
'Sim grants and revokes access by policy, so requests are handled in seconds, not days.',
|
|
visual: null,
|
|
},
|
|
{
|
|
title: 'Answer common questions',
|
|
description: 'Sim deploys an internal help-desk agent that answers from your own docs.',
|
|
visual: null,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
id: 'reliability',
|
|
title: 'Keep systems healthy.',
|
|
subtitle: 'Sim watches your stack and acts before small issues become outages.',
|
|
cta: { label: 'Explore monitoring', href: '/signup' },
|
|
cards: [
|
|
{
|
|
title: 'Monitor infrastructure',
|
|
description:
|
|
'Sim agents watch logs and metrics and flag anomalies the moment they appear.',
|
|
visual: null,
|
|
},
|
|
{
|
|
title: 'Respond to incidents',
|
|
description:
|
|
'Sim runs your runbooks automatically and escalates to the right on-call engineer.',
|
|
visual: null,
|
|
},
|
|
{
|
|
title: 'Audit every action',
|
|
description:
|
|
'Sim logs every agent run block by block, so IT can prove exactly what happened.',
|
|
visual: null,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|
|
export default function ItSolution() {
|
|
return <SolutionsPage config={IT_CONFIG} />
|
|
}
|