TextLink from @kuppwest/apple-clean. Use via `window.KuppwestAppleClean.TextLink` (bundle loaded from the root `_ds_bundle.js`). Wrap the tree in `<Page>` (full provider chain in README.md — components read theme/i18n from that context).

Blue text link in the Apple Clean idiom: no underline until hover, optional
trailing chevron. Use `standalone` in the hero link row and `inline` inside
paragraphs such as the `FitNotice` copy.

## Props

```ts
interface TextLinkProps {
  /** `standalone` = 17px blue link used in the hero link row (`.kwac-link`); `inline` = semibold link inside running copy (`. */
  variant?: "standalone" | "inline";
  /** Append the "›" chevron after the label (standalone links in the template always carry it). */
  chevron?: boolean;
  href: string;
  children: React.ReactNode;
  className?: string;
  id?: string;
  style?: CSSProperties;
}
```
