import { FaArchive, FaExternalLinkAlt, FaFilePdf } from "react-icons/fa"; import Link, { LinkType } from "../models/link"; import Image from "next/image"; import { BsThreeDots } from "react-icons/bs"; import LinkIcon from "./LinkIcon"; interface ILinkCardProps { link: Link; } export default function LinkCard(props: ILinkCardProps) { return ( window.open(props.link.link, "_blank")} className="flex flex-col rounded-lg hover:cursor-pointer" > {/* attmnt header */} {props.link.name} {props.link.description} {/* attachment actions */} {/* attmnt footer */} profile Adriana 5 minutes ago ); }