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
79 lines
2.7 KiB
TypeScript
79 lines
2.7 KiB
TypeScript
import { SolutionsPage, type SolutionsPageConfig } from '@/app/(landing)/components'
|
|
|
|
/**
|
|
* HR solution page - a reference consumer of {@link SolutionsPage}.
|
|
*
|
|
* The whole page is one typed {@link SolutionsPageConfig} rendered inside the
|
|
* shared route-group layout. 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 HR_CONFIG: SolutionsPageConfig = {
|
|
module: 'HR',
|
|
path: '/solutions/hr',
|
|
hero: {
|
|
heading: 'Automate onboarding, employee questions, and approvals with Sim agents.',
|
|
description:
|
|
'HR teams build AI agents in Sim, the open-source AI workspace, wired into your HRIS and 1,000+ integrations, so the team spends time on people, not paperwork.',
|
|
summary:
|
|
'Sim is the open-source AI workspace where HR teams build, deploy, and manage AI agents that automate onboarding, employee questions, and approvals, connecting your HRIS and 1,000+ integrations so the team focuses on people, not paperwork.',
|
|
visual: null,
|
|
},
|
|
rows: [
|
|
{
|
|
id: 'onboard',
|
|
title: 'Onboard and support.',
|
|
subtitle: 'Sim agents handle the repetitive people-ops work end to end.',
|
|
cta: { label: 'See HR agents', href: '/signup' },
|
|
cards: [
|
|
{
|
|
title: 'Onboard new hires',
|
|
description:
|
|
'Sim runs the onboarding checklist across every system so day one just works.',
|
|
visual: null,
|
|
},
|
|
{
|
|
title: 'Answer HR questions',
|
|
description:
|
|
'Sim deploys an agent that answers policy and benefits questions from your docs.',
|
|
visual: null,
|
|
},
|
|
{
|
|
title: 'Generate documents',
|
|
description:
|
|
'Sim drafts offer letters and policy docs from your templates automatically.',
|
|
visual: null,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
id: 'run',
|
|
title: 'Run the team.',
|
|
subtitle: 'Sim keeps people operations moving without the manual chase.',
|
|
cta: { label: 'Explore HR automation', href: '/signup' },
|
|
cards: [
|
|
{
|
|
title: 'Route approvals',
|
|
description:
|
|
'Sim sends PTO and expense requests to the right manager and tracks the response.',
|
|
visual: null,
|
|
},
|
|
{
|
|
title: 'Run surveys',
|
|
description: 'Sim collects and summarizes engagement feedback so trends surface early.',
|
|
visual: null,
|
|
},
|
|
{
|
|
title: 'Build reports',
|
|
description: 'Sim assembles headcount and people reports from your HRIS on schedule.',
|
|
visual: null,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|
|
export default function HrSolution() {
|
|
return <SolutionsPage config={HR_CONFIG} />
|
|
}
|