AnimationHome.tsx
1 const AnimationHome = () => ( 2 <div className="justify-center items-center flex mx-auto h-20 mb-2 relative jen-fix-overflow"> 3 <svg 4 className="path" 5 width="100px" 6 height="100px" 7 viewBox="0 0 24 24" 8 fill="white" 9 xmlns="http://www.w3.org/2000/svg" 10 > 11 <path 12 d="M20 6C20 6 19.1843 6 19.0001 6C16.2681 6 13.8871 4.93485 11.9999 3C10.1128 4.93478 7.73199 6 5.00009 6C4.81589 6 4.00009 6 4.00009 6C4.00009 6 4 8 4 9.16611C4 14.8596 7.3994 19.6436 12 21C16.6006 19.6436 20 14.8596 20 9.16611C20 8 20 6 20 6Z" 13 stroke="#000000" 14 strokeWidth="1" 15 strokeLinecap="round" 16 strokeLinejoin="round" 17 /> 18 </svg> 19 20 <div className="sine w-20 bg-yellow-300 rounded-full absolute"></div> 21 </div> 22 ); 23 24 export default AnimationHome;