// Brand mark for آرام جان — a layered translucent lotus on a blue→indigo // gradient, matching the app icon. Self-contained SVG so it stays crisp at any // size and needs no image asset. Size it with `className` (e.g. "w-9 h-9"). function LotusLogo({ className = "w-9 h-9", title = "آرام جان" }) { const petal = "M50 72 C42 56 42 34 50 22 C58 34 58 56 50 72 Z"; const angles = [-50, -25, 0, 25, 50]; const opacityFor = (a) => { if (a === 0) return 0.95; if (Math.abs(a) === 25) return 0.72; return 0.5; }; return ( {angles.map((a) => ( ))} ); } export default LotusLogo;