This commit is contained in:
Kenneth Jannette
2024-01-12 19:55:22 -06:00
parent 0a246997c0
commit 5ca9da21a3
2 changed files with 31 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
import legalTechFlip from "../Assets/Images/legalTechFlip.jpg";
import { ExclamationTriangle } from "react-bootstrap-icons";
const MobileContent = ({ isDashboard }) => {
const copy = isDashboard ? (
<>
@@ -31,8 +32,16 @@ const MobileContent = ({ isDashboard }) => {
) : (
<>
<div>
<div>
<div className="notication-container">
<strong>Notification Center</strong>
<div className="notication-text-container">
<p>
<ExclamationTriangle
style={{ color: "red", marginBottom: "5px" }}
/>
</p>
<p className="notification-text">No new notifications</p>
</div>
</div>
</div>
</>