This commit is contained in:
Kenneth Jannette
2024-01-12 16:42:02 -06:00
parent 59b7a61488
commit fc032da063
3 changed files with 133 additions and 60 deletions

View File

@@ -0,0 +1,27 @@
import legalTechFlip from "../Assets/Images/legalTechFlip.jpg";
const MobileContent = ({ isDashboard }) => {
const copy = isDashboard
? "hello dash"
: "Novodraft is a desktop application. Please login on your desktop device to use this feature";
return (
<>
<div className="mobile-content-container">
{!isDashboard ? (
<>
<div className="mobile-divider"></div>
<div className="features-top-mobile-img">
<img className="features-image-one" src={legalTechFlip} />
</div>
</>
) : (
<></>
)}
<div className="mobile-info-heading">{copy}</div>
<div className="mobile-divider"></div>
</div>
</>
);
};
export default MobileContent;