type OrganicBlobProps = { className?: string; tone?: "rose" | "sage" | "cream" | "mauve"; }; const tones: Record, string> = { rose: "bg-anouma-rose-soft", sage: "bg-anouma-sage", cream: "bg-anouma-cream-beige-2", mauve: "bg-anouma-mauve", }; /** Purely decorative, blurred organic shape used to add warmth behind content. */ export function OrganicBlob({ className = "", tone = "rose" }: OrganicBlobProps) { return (