import { Quote as QuoteIcon } from 'lucide-react' export default function QuoteBox({ data, onUpdate }) { const quote = data || { text: "The only way to learn is by doing.", author: "Albert Einstein" } return (

"{quote.text}"

— {quote.author}

) }