import { KeenIcon } from '@/components'; import { toAbsoluteUrl } from '@/utils/Assets'; interface INFTProps { image: string; title: string; id: number; info: string; date: string; } const CardNFT = ({ image, id, title, info, date }: INFTProps) => { return (