chore: keep beta Apple docs component available

This commit is contained in:
Gustavo Valverde
2026-06-11 20:03:44 -07:00
parent 167f3c7645
commit 5ce8d4cb55
2 changed files with 12 additions and 0 deletions
+2
View File
@@ -21,6 +21,7 @@ import {
DividerText,
Endpoint,
ForkButton,
GenerateAppleJwt,
GenerateSecret,
} from "@/components/docs/mdx-components";
import { Callout } from "@/components/ui/callout";
@@ -114,6 +115,7 @@ export default async function Page({
AddToCursor,
Features,
Endpoint,
GenerateAppleJwt,
GenerateSecret,
DividerText,
Callout: ({
+10
View File
@@ -613,6 +613,16 @@ export function DividerText({ children }: { children: ReactNode }) {
);
}
// ─── GenerateAppleJwt ────────────────────────────────────────────────────────
export function GenerateAppleJwt() {
return (
<div className="my-4 rounded-lg border bg-card p-4 text-sm text-muted-foreground/80">
See the Apple documentation for generating a client secret JWT.
</div>
);
}
// ─── Features (placeholder) ─────────────────────────────────────────────────
export function Features({ stars }: { stars?: string | null }) {