interface LandingMeritsOptions {
    settings: {
        meritItems: ((t) => MeritItem[]);
        screenMode: "desktop" | "mobile";
        signupRoute: string;
    };
}

Properties

Properties

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

Type declaration

  • meritItems: ((t) => MeritItem[])

    List of merit items

  • screenMode: "desktop" | "mobile"

    Screen size to show for this block

  • signupRoute: string

    Signup route that the call to action button takes you to

Generated using TypeDoc