mirror of
https://github.com/fleetdm/fleet
synced 2026-05-01 18:37:37 +00:00
- Broke up the single MDM doc into multiple ones organized by category - Changed any links to point to the new docs --------- Co-authored-by: Noah Talerman <noahtal@umich.edu> Co-authored-by: Noah Talerman <47070608+noahtalerman@users.noreply.github.com>
32 lines
915 B
TypeScript
32 lines
915 B
TypeScript
import React from "react";
|
|
|
|
import CustomLink from "components/CustomLink";
|
|
|
|
import OsUpdateScreenshot from "../../../../../../assets/images/nudge-screenshot.png";
|
|
|
|
const baseClass = "nudge-preview";
|
|
|
|
const NudgePreview = () => {
|
|
return (
|
|
<div className={baseClass}>
|
|
<h2>End user experience</h2>
|
|
<p>
|
|
When a minimum version is saved, the end user sees the below window
|
|
until their macOS version is at or above the minimum version.
|
|
</p>
|
|
<p>As the deadline gets closer, Fleet provides stronger encouragement.</p>
|
|
<CustomLink
|
|
text="Learn more about macOS updates in Fleet"
|
|
url="https://fleetdm.com/docs/using-fleet/mdm-macos-updates"
|
|
newTab
|
|
/>
|
|
<img
|
|
className={`${baseClass}__preview-img`}
|
|
src={OsUpdateScreenshot}
|
|
alt="OS update preview screenshot"
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default NudgePreview;
|