'use client' import Link from 'next/link'; import { useState } from 'react'; const Card = ({ title, text, url }) => { const [isHovered, setIsHovered] = useState(false); const handleMouseEnter = () => { setIsHovered(true); }; const handleMouseLeave = () => { setIsHovered(false); }; const cardStyle = { boxShadow: isHovered ? '0 4px 20px rgba(0, 0, 0, 0.2)' : '0 1px 3px rgba(0, 0, 0, 0.1)', transition: 'box-shadow 0.3s ease-in-out', }; return (
{title}

{text}

); }; export default Card;