()
| 19 | ] |
| 20 | |
| 21 | const AnimationCards = () => { |
| 22 | return ( |
| 23 | <div> |
| 24 | <div className="grid grid-cols-2 gap-4 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4"> |
| 25 | {data.map((item) => ( |
| 26 | <Link href={item.link} key={item.id}> |
| 27 | <Card title={item.title}>{item.component}</Card> |
| 28 | </Link> |
| 29 | ))} |
| 30 | </div> |
| 31 | </div> |
| 32 | ) |
| 33 | } |
| 34 | |
| 35 | export default AnimationCards |
nothing calls this directly
no outgoing calls
no test coverage detected