interface LandingHowToUseOptions {
    settings: {
        screenMode: "desktop" | "mobile";
        signupRoute: string;
        stepItems: ((t) => HowToUseStepItem[]);
    };
}

Properties

Properties

settings: {
    screenMode: "desktop" | "mobile";
    signupRoute: string;
    stepItems: ((t) => HowToUseStepItem[]);
}

Type declaration

  • screenMode: "desktop" | "mobile"

    Screen size to show for this block

  • signupRoute: string

    Signup route that the call to action button takes you to

  • stepItems: ((t) => HowToUseStepItem[])

    List of merit items

Generated using TypeDoc