The contacts section within the KigoContext allows you to specify important contact information, such as a support email address, to be used throughout your application.

Default

The code below shows the default value for the contacts section:

const kigoContext = {
  contacts: {
		supportEmail: "[email protected]",
    supportLinkUrl: "https://help.kigo.io/hc/en-us/requests/new",
    shopLinkUrl: "https://shop.deere.com",
    faqLinkUrl: "/landing#faq",
  },
};

Properties

  • supportEmail - The email address that users can contact for support.
    • Default: "" - If set to "", no support email will be provided in the application.
    • Valid values: string
    • Example:
      contacts: { supportEmail: "[email protected]" }
      
  • supportLinkurl - The URL of the support page.
    • Default: ""https://help.kigo.io/hc/en-us/requests/new"" - If not set, users will be directed to Kigo's support page.
    • Valid values: string
    • Example:
      contacts: { supportLinkUrl: "https://example.com/support" }
      
  • shopLinkUrl - The URL for users to redeem their rewards at.
    • Default: "https://shop.deere.com" - If not set, users will be navigated to the default URL.
    • Valid values: string
    • Example:
      contacts: { shopLinkUrl: "https://example.com/shop" }
      
  • faqLinkUrl - The URL for the frequently asked questions (FAQ) page
    • Default: "/landing#faq" - If not set, users will be directed to the default FAQ page URL
    • Valid values: string
    • Example:
      contacts: { supportEmail: "https://example.com/faq" }
      

This property can be customized to align with your specific application needs by setting it within the KigoContext.


What’s Next