Skip to main content
HandaUncle is not a SEBI-registered investment advisor. The APIs described here are for product integration only—end-user suitability checks must still happen inside the mobile app. Include this callout on any page that references customer-facing advice or portfolio recommendations.

When to use a snippet

  • Legal/compliance blurbs (SEBI/SEBI disclaimers, “not investment advice”)
  • Support CTAs that should stay in sync across multiple guides
  • Release banners or outage notices that appear on several pages
Everything inside docs/snippets/ is treated as a component you can import.

Creating one

  1. Add a new .mdx file under docs/snippets/, for example docs/snippets/support-cta.mdx.
  2. Export either default content or named helpers:
snippets/support-cta.mdx
export const SupportCTA = () => (
  <Card title="Need help?" icon="life-ring" href="mailto:hello@handauncle.com">
    Share the `X-Request-ID` from your failing call so we can trace it quickly.
  </Card>
)
  1. Import it where needed:
import { SupportCTA } from '/snippets/support-cta.mdx';

<SupportCTA />
Snippets keep us from copying the same disclaimer into ten pages and forgetting to update one later.