Spaces:
Sleeping
Sleeping
File size: 534 Bytes
bc6620e 04deb84 bc6620e 04deb84 bc6620e 04deb84 bc6620e 04deb84 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | // src/components/CompatibilityCard.jsx
import CompatibilityRing from "./CompatibilityRing";
import Icon from "./Icons";
export default function CompatibilityCard({ result }) {
return (
<div className="glass-card text-center">
<h3 className="mb-4 font-mono text-xs text-slate-400">COMPATIBILITY_RESULT</h3>
<CompatibilityRing score={result.score} />
<p className="text-lg font-bold mb-2 text-white">"{result.joke}"</p>
<div className="text-indigo-400 font-bold">{result.verdict}</div>
</div>
);
}
|