diff --git a/.cspell/company-names.txt b/.cspell/company-names.txt index be9d69ed7a..b096c3b349 100644 --- a/.cspell/company-names.txt +++ b/.cspell/company-names.txt @@ -28,4 +28,5 @@ razorpay payu PayU Mikro -anthropics \ No newline at end of file +anthropics +Zitadel diff --git a/docs/app/docs/[[...slug]]/page.tsx b/docs/app/docs/[[...slug]]/page.tsx index 012e886499..62a44876aa 100644 --- a/docs/app/docs/[[...slug]]/page.tsx +++ b/docs/app/docs/[[...slug]]/page.tsx @@ -128,6 +128,27 @@ export default async function Page({ {children} ), + HeaderLabel: ({ + children, + variant = "default", + }: { + children: React.ReactNode; + variant?: "default" | "info" | "warning"; + }) => { + const colors = { + default: "text-neutral-600 dark:text-neutral-300", + info: "text-blue-500 dark:text-blue-400", + warning: "text-amber-600 dark:text-amber-400", + }; + return ( + + {children} + + ); + }, iframe: (props: React.ComponentProps<"iframe">) => (