'use client'; import { motion, Variants } from 'framer-motion'; import { Spotlight } from './elements/spotlight'; import { AnimateValue } from '@nx/nx-dev/ui-animations'; import { ReactElement } from 'react'; export function FasterAndCheaper(): ReactElement { const spotlight: Variants = { offscreen: { display: 'none', }, onscreen: { display: 'block', }, }; return (

Both faster & cheaper

Nx Cloud makes your CI significantly faster and cheaper, while also making it more maintainable and reliable.

Faster CI
Reported by enterprises using Nx Cloud.
Halve your CI bill
CI
$6k
CI + Nx Cloud
$3.2k

Cost per month for CI compute. {' '} Data collected based on a typical month of CI runs measured on the Nx OSS monorepo.

); }