|
| 1 | +import styles from "./styles.module.css"; |
| 2 | + |
| 3 | +// Responsive comparison of the download variants. Renders as three columns on |
| 4 | +// desktop and stacks vertically on mobile — unlike a markdown table, it never |
| 5 | +// overflows the viewport and so never causes horizontal page scrolling. |
| 6 | +const VARIANTS = [ |
| 7 | + { |
| 8 | + version: "Setup (MSI)", |
| 9 | + description: ( |
| 10 | + <> |
| 11 | + Installs system-wide and requires administrator privileges, integrating |
| 12 | + with Windows like any other installed app. It's the right choice for most |
| 13 | + users and the standard way to roll NETworkManager out to many machines via |
| 14 | + Intune, SCCM, or Group Policy (see <em>Silent install</em> below). Updates |
| 15 | + install cleanly over a previous version. |
| 16 | + </> |
| 17 | + ), |
| 18 | + location: <code>~\Documents\NETworkManager</code>, |
| 19 | + }, |
| 20 | + { |
| 21 | + version: "Portable (ZIP)", |
| 22 | + description: ( |
| 23 | + <> |
| 24 | + Runs straight from the extracted folder — no installation and no |
| 25 | + administrator rights required, which makes it ideal for a USB stick, a |
| 26 | + network share, or locked-down environments. Settings and profiles are |
| 27 | + stored next to the executable, so the whole setup travels with the folder. |
| 28 | + To upgrade, copy your <code>Profiles</code> and <code>Settings</code>{" "} |
| 29 | + directories into the new version. |
| 30 | + </> |
| 31 | + ), |
| 32 | + location: "Next to the executable", |
| 33 | + }, |
| 34 | + { |
| 35 | + version: "Archive (ZIP)", |
| 36 | + description: ( |
| 37 | + <> |
| 38 | + Works like the Portable version — no installation required — but stores |
| 39 | + settings and profiles in your Documents folder instead of next to the |
| 40 | + executable. This suits custom or multi-user setups such as a Terminal |
| 41 | + Server, where the application files stay shared while each user keeps their |
| 42 | + own profile. Just extract it and run the executable directly. |
| 43 | + </> |
| 44 | + ), |
| 45 | + location: <code>~\Documents\NETworkManager</code>, |
| 46 | + }, |
| 47 | +]; |
| 48 | + |
| 49 | +export default function VersionComparison() { |
| 50 | + return ( |
| 51 | + <div className={styles.grid}> |
| 52 | + {VARIANTS.map((v) => ( |
| 53 | + <div key={v.version} className={styles.card}> |
| 54 | + <div className={styles.cardTitle}>{v.version}</div> |
| 55 | + <p className={styles.cardDesc}>{v.description}</p> |
| 56 | + <div className={styles.cardSpec}> |
| 57 | + <span className={styles.specLabel}>Settings & profiles</span> |
| 58 | + <span>{v.location}</span> |
| 59 | + </div> |
| 60 | + </div> |
| 61 | + ))} |
| 62 | + </div> |
| 63 | + ); |
| 64 | +} |
0 commit comments