'use client'; import * as React from 'react'; import { motion } from 'framer-motion'; import { IllustrationProps } from './types'; export const ResultIllustration: React.FC = ({ className = "", delay = 0 }) => ( {/* Result Box */} {/* Checkmark */} {/* Sparkles */} {[ { x: 25, y: 25 }, { x: 95, y: 35 }, { x: 85, y: 95 } ].map((pos, i) => ( ))} );