Join the

Join the Sorva Team

Join the Sorva Team

Sorva

Team

At Sorva, we’re builders and problem-solvers who move fast, tackle hard problems, and reward those who rise to the challenge.


We’re here to create, compete, and win—together.

Available Positions

Available Positions

Outbound Lead Generation Expert

Outbound Lead Generation Expert

Fine-tune Sorva’s engine to maximize performance and bring higher conversions for our users.

/* First make sure that you have installed the package */ /* If you are using yarn */ // yarn add @calcom/embed-react /* If you are using npm */ // npm install @calcom/embed-react import { getCalApi } from "@calcom/embed-react"; import { useEffect } from "react"; export default function MyApp() { useEffect(()=>{ (async function () { const cal = await getCalApi({"namespace":"qualification-call"}); cal("floatingButton", {"calLink":"nathangolter/qualification-call","config":{"layout":"month_view"},"buttonText":"Book to Qualify"}); cal("ui", {"styles":{"branding":{"brandColor":"#000000"}},"hideEventTypeDetails":false,"layout":"month_view"}); })(); }, []) };