MynduiMyndui
0

Production API key

rotated 3 days ago

Live
sk_live_51Nc••••••••4Rf2
AES-256-GCM at restSOC 2

Encrypted Card

tsx
import { EncryptedCard } from "@/components/myndui/encrypted-card";export function ApiKeyCard() {return (  <EncryptedCard className="w-[22rem]">    <div className="p-5">      <div className="flex items-center justify-between">        <p className="text-sm font-medium">Production API key</p>        <span className="rounded-full border border-primary/30 bg-primary/10 px-2 py-0.5 font-mono text-[10px] uppercase text-primary">          Live        </span>      </div>      <code className="mt-4 block truncate rounded-lg border border-border bg-background/60 px-3 py-2 font-mono text-[13px]">        sk_live_51Nc••••••••4Rf2      </code>    </div>  </EncryptedCard>);}