import { IoCheckmarkCircle } from 'react-icons/io5'; import ExternalLink from '../../../../common/components/link/external-link/ExternalLink'; import { isOntimeCloud, websiteUrl } from '../../../../externals'; import * as Panel from '../../panel-utils/PanelUtils'; import style from './CloudPanel.module.scss'; export default function CloudPanel() { if (isOntimeCloud) { return null; } return ( Ontime Cloud

Run Ontime online with zero setup

Ontime Cloud lets you run and share Ontime online with your team. Subscriptions support continued development while Ontime remains fully open-source and self-hostable. Project files work locally and in Cloud, so your shows can move freely.

Learn more about Ontime Cloud
); }