A static suggestion ad is usually placed on a homepage or other initial user touchpoint within your app. It displays a user relevant pre-defined suggestion, typically used by Kontext’s advertisers for brand advertising and to drive further interest about their advertised items. Once clicked, you can e.g. open up a conversation relevant to the sponsored product.

How to use a Static Suggestion Ad

  • code - Code for unique identification of the ad placement (received during onboarding)
  • onClick - Handler that takes the suggested ad text. You can send the message user clicked to assistant or to add it to the chat input.
  • leftIcon? - Icon to be shown on the left side of the suggestion (optional)
  • rightIcon? - Icon to be shown on the right side of the suggestion (optional)
<QueryStatic
    code="<your-code>"
    onClick={(suggestion) => window.alert('Clicked on ad with suggestion: ' + suggestion)}
    leftIcon={<SearchIcon/>}
/>

Custom styling

  • .mb-query-static - Top level wrapper class
  • .mb-query-static-left-icon - Left icon class
  • .mb-query-static-right-icon - Right icon class