import Image from "next/image"; import Link from "next/link"; import React from "react"; export const AnimatedTooltip = ({ items, }: { items: { id: number; name: string; designation: string; image: string; }[]; }) => { return ( <> {items.map((item) => (