import { Icon } from '@/components';
import { env } from '@/constants';
import { useNavigate } from 'react-router-dom';
import { NftCard } from './nft-card';
export const NftMinted = () => {
const navigate = useNavigate();
const handleButtonClick = () => {
window.open(env.twitter.url, '_blank'); //TODO replace with twitter share
navigate('/home');
};
return (
}
message="You have successfully minted your NFA."
buttonText="Tweet about your NFA!"
onClick={handleButtonClick}
leftIconButton={}
/>
);
};