How Lonryo Works

    From installation to insights in under 30 minutes. Here's how Lonryo transforms your analytics workflow.

    1

    Install SDK

    Add Lonryo to your Next.js app in under 5 minutes with our zero-config setup.

    Our SDK auto-instruments page views, navigations, and key UI components with no manual tracking required.

    2

    Auto-Generated Funnels

    We automatically create opinionated funnels: Signup → Aha! → Repeat Value → Pay.

    These funnels are refined as your product evolves, giving you actionable insights without setup overhead.

    3

    AI Insight Cards

    Get prescriptive insights with estimated impact and one-click actions to Jira, Slack, or your CRM.

    Our AI analyzes user behavior patterns and provides specific recommendations with measurable outcomes.

    Installation

    Get started with a single npm install and two lines of code.

    1. Install the package

    npm install @Lonryo/next-telemetry

    2. Add to your Next.js app

    // app/layout.tsx
    import { TelemetryProvider } from '@Lonryo/next-telemetry';
    
    export default function RootLayout({ children }) {
      return (
        <html>
          <body>
            <TelemetryProvider publishableKey={process.env.NEXT_PUBLIC_Lonryo_KEY}>
              {children}
            </TelemetryProvider>
          </body>
        </html>
      );
    }
    
    // components/CheckoutButton.tsx  
    import { useTrack } from '@Lonryo/next-telemetry';
    
    export function CheckoutButton() {
      const track = useTrack();
      
      const handleClick = () => {
        track('checkout_initiated', {
          plan: 'growth',
          value: 199
        });
      };
    
      return (
        <button onClick={handleClick}>
          Start Growth Plan
        </button>
      );
    }

    Opinionated Funnels

    We automatically generate and refine funnels based on your product's key moments.

    1

    Signup

    User creates account

    2

    Aha!

    First value moment

    3

    Repeat

    Continued engagement

    4

    Pay

    Conversion to paid

    AI Insight Cards

    Get actionable recommendations with estimated impact and one-click integrations.

    Live Insight Example

    Drop at onboarding step 2

    Est. +12% signups

    70% of users abandon the onboarding form at email verification.

    Suggest: shorten form, simplify verification flow

    Ready to get started?

    Join modern Next.js teams shipping decisions, not dashboards.

    View pricing