'use client'; import { ReactElement } from 'react'; import Image from 'next/image'; import { ButtonLink } from '@nx/nx-dev/ui-common'; import Link from 'next/link'; import { sendCustomEvent } from '@nx/nx-dev/feature-analytics'; export function TrialCallout({ pageId, }: { pageId: 'enterprise' | 'pricing'; }): ReactElement { return (

Start a Trial

Start with our Hobby Plan - free forever for teams of any size. Perfect for proof of concept testing with up to 50,000 credits per month.

sendCustomEvent( 'start-trial-click', 'trial-callout-' + pageId, 'trial-callout' ) } > Start for free

Need a bit more? For larger teams we offer personalized support,{' '} sendCustomEvent( 'contact-click', 'trial-callout-' + pageId, 'trial-callout' ) } className="font-semibold text-blue-500 dark:text-sky-500" > reach out to us and we'll help you get started with a trial {' '} that suits your team's needs.{' '}

App screenshot: overview
); }