import { HeartIcon } from '@heroicons/react/24/outline';
import {
HeartIcon as HeartIconSolid,
UserIcon,
} from '@heroicons/react/24/solid';
import { motion } from 'framer-motion';
import { useState } from 'react';
function IndexSimple() {
const [isFav, setIsFav] = useState(false);
return (
<>
Try hover on the card and click buttons Try tap the card and click buttons
> ); } export default IndexSimple;