Two Strings

Build funnels that convert

Create high-converting web funnels with granular content control. Design, customize, and deploy professional funnels in minutes with our powerful admin panel.

FunnelStep.tsx
Builder.tsx
// Initialize the SDK
import TwoStrings from 'two-strings'

TwoStrings.init({ apiKey: 'your-api-key' })

// Use in your React component
function App() {
  return <TwoStrings.Funnel
    id="your-funnel-id"
    onNext={(data) => console.log(data)}
    onBack={() => console.log('Back')}
    onComplete={(data) => handleComplete(data)}
    onPay={(plan) => initPayment(plan)}
    onLogin={() => showAuth()}
  />
}