> ## Documentation Index
> Fetch the complete documentation index at: https://docs.handauncle.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Reusable snippets

> Shared copy blocks for compliance, support, and CTAs

<Note>
  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.
</Note>

## 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:

```mdx snippets/support-cta.mdx theme={null}
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>
)
```

3. Import it where needed:

```mdx theme={null}
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.
