import withPageTitle from 'HOCs/withPageTitle'; import { Icon } from 'UI'; import stl from './signup.css'; import cn from 'classnames'; import SignupForm from './SignupForm'; const BulletItem = ({ text }) => (
{text}
) @withPageTitle('Signup - OpenReplay') export default class Signup extends React.Component { render() { return (
OpenReplay Cloud
OpenReplay Cloud is the hosted version of our open source package.
We’ll manage hosting, scaling and upgrades.
Want to self-host?
Private Cloud
Managed deployments, maximum scalability
Open source
Deploy on your own infrastructure. Free forever.
); } }