interface LandingHeroOptions {
    settings: {
        byline?: ((t) => ReactNode);
        imageUrl: string;
        screenMode: "desktop" | "mobile";
        showSecondaryText?: boolean;
        showTertiaryText?: boolean;
        signupRoute: string;
    };
}

Properties

Properties

settings: {
    byline?: ((t) => ReactNode);
    imageUrl: string;
    screenMode: "desktop" | "mobile";
    showSecondaryText?: boolean;
    showTertiaryText?: boolean;
    signupRoute: string;
}

Type declaration

  • Optional byline?: ((t) => ReactNode)

    Configures the main byline text to display for this component. Supports components to handle inline images and text colors

      • (t): ReactNode
      • Configures the main byline text to display for this component. Supports components to handle inline images and text colors

        Parameters

        Returns ReactNode

  • imageUrl: string

    URL of the image to show in this hero image component

  • screenMode: "desktop" | "mobile"

    Screen size to show for this block

  • Optional showSecondaryText?: boolean

    Show/hide secondary text

  • Optional showTertiaryText?: boolean

    Show/hide tertiary text

  • signupRoute: string

    Signup route that the call to action button takes you to

Generated using TypeDoc