This commit is contained in:
Kenneth Jannette
2024-01-12 18:41:08 -06:00
parent a597a407e8
commit 915472c86f
2 changed files with 101 additions and 64 deletions

View File

@@ -1,8 +1,20 @@
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";
const copy = isDashboard ? (
<div>
<p>
Novodraft is a desktop application. The functionailty of your Dashboard
in mobile mode is limited to displaying stats and important
notifications.
</p>
<p>
Please login on your desktop device to use all of the functions your
Dashboard.
</p>
</div>
) : (
"Novodraft is a desktop application. Please login on your desktop device to use this feature."
);
return (
<>
@@ -15,7 +27,9 @@ const MobileContent = ({ isDashboard }) => {
</div>
</>
) : (
<></>
<>
<div className="mobile-divider"></div>
</>
)}
<div className="mobile-info-heading">{copy}</div>
<div className="mobile-divider"></div>