import { HeartIcon, UserIcon } from '@heroicons/react/24/solid'; import { motion } from 'framer-motion'; import { useState } from 'react'; function IndexSoft() { const [isFav, setIsFav] = useState(false); return ( <>
setIsFav(!isFav)} >

Try hover on the card and click buttons Try tap the card and click buttons

); } export default IndexSoft;