Skip to content

Commit 807669b

Browse files
committed
Docs: #3249
1 parent 3d3fee3 commit 807669b

File tree

4 files changed

+44
-58
lines changed

4 files changed

+44
-58
lines changed

README.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,12 @@
5454
</a>
5555
</p>
5656
<p>
57-
<a href="#-download">Download</a> • <a href="#-donate">Donate</a> • <a href="#-changelog">Changelog</a> • <a href="#-documentation">Documentation</a> • <a href="#-contributing">Contributing</a> • <a href="#-build">Build</a> • <a href="#-thanks">Thanks</a> • <a href="#-license">License</a>
57+
<a href="#-download">Download</a> • <a href="#-donate">Donate</a> • <a href="#-screenshots">Screenshots</a> • <a href="#-changelog">Changelog</a> • <a href="#-documentation">Documentation</a> • <a href="#-contributing">Contributing</a> • <a href="#-build">Build</a> • <a href="#-thanks">Thanks</a> • <a href="#-license">License</a>
5858
</p>
5959
</div>
6060

6161
<div align="center">
6262
<img alt="NETworkManager Features Preview" src="https://github.com/BornToBeRoot/NETworkManager/blob/main/Website/static/img/preview-features.gif?raw=true" />
63-
<details>
64-
<summary>Click to see screenshots & GIFs of NETworkManager in action!</summary>
65-
<img alt="NETworkManager tabs and drag & drop preview" src="https://github.com/BornToBeRoot/NETworkManager/blob/main/Website/static/img/preview_tabs_drag_drop.gif?raw=true" />
66-
<img alt="NETworkManager dark/light theme preview" src="https://github.com/BornToBeRoot/NETworkManager/blob/main/Website/static/img/preview-light-theme.png?raw=true" />
67-
</details>
6863
</div>
6964

7065
## 🚀 Why NETworkManager?
@@ -135,6 +130,22 @@ If you find it useful, here are ways to support the project:
135130

136131
Thank you for helping keep NETworkManager thriving!
137132

133+
## 📷 Screenshots
134+
135+
<div align="center">
136+
137+
<img alt="NETworkManager tabs and drag & drop preview" src="https://github.com/BornToBeRoot/NETworkManager/blob/main/Website/static/img/preview_tabs_drag_drop.gif?raw=true" />
138+
139+
Preview of tabs and drag & drop functionality.
140+
141+
---
142+
143+
<img alt="NETworkManager dark/light theme preview" src="https://github.com/BornToBeRoot/NETworkManager/blob/main/Website/static/img/preview-light-theme.png?raw=true" />
144+
145+
Customizable light/dark themes and accent colors.
146+
147+
</div>
148+
138149
## 📃 Changelog
139150

140151
Stay updated with the latest improvements and features. Check the full changelog [here](https://borntoberoot.net/NETworkManager/docs/category/changelog).

Website/docs/commandline-arguments.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ Start a specific application on startup.
4545
- `RemoteDesktop`
4646
- `PowerShell`
4747
- `PuTTY`
48-
- `AWSSessionManager`
4948
- `TigerVNC`
5049
- `WebConsole`
5150
- `SNMP`

Website/src/components/HomepageFeatures/index.js

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,23 @@ import styles from "./styles.module.css";
44

55
const FeatureList = [
66
{
7-
title: "Network Analysis",
7+
title: "In-Depth Network Analysis",
88
Svg: require("@site/static/img/undraw_connected_world_wuay.svg").default,
99
description: (
1010
<>
11-
Analyze your network and gather detailed information using built-in
12-
tools such as the WiFi Analyzer, IP Scanner, Port Scanner, Traceroute,
13-
DNS Lookup, Ping Monitor, LLDP Capture, and many more.
11+
Analyze your network and perform in-depth diagnostics using built-in
12+
tools such as WiFi Analyzer, IP Scanner, Port Scanner, Traceroute,
13+
DNS Lookup, Ping Monitor, LLDP Capture, and many more - all in a unified
14+
interface.
1415
</>
1516
),
1617
},
1718
{
18-
title: "Remote System Management",
19+
title: "Remote Access & Server Management",
1920
Svg: require("@site/static/img/undraw_server_cluster_jwwq.svg").default,
2021
description: (
2122
<>
22-
Connect to remote systems and manage your network and server
23+
Connect, monitor and troubleshoot your network and server
2324
infrastructure with integrated clients such as Remote Desktop (RDP),
2425
PuTTY (SSH, Serial, etc.), PowerShell (WSL, K9s, etc.)
2526
and TigerVNC (VNC).
@@ -32,10 +33,10 @@ const FeatureList = [
3233
.default,
3334
description: (
3435
<>
35-
Organize hosts and networks into encrypted profiles to protect
36-
sensitive data and use them seamlessly across all features.
37-
Separate profile files let you easily manage different customers
38-
or environments.
36+
Organize hosts and networks in profiles with individual settings,
37+
and use them seamlessly across all features. Keep your sensitive
38+
data secure with encrypted profile files, and manage multiple
39+
customers or environments by using different profile files.
3940
</>
4041
),
4142
},
@@ -45,7 +46,9 @@ const FeatureList = [
4546
description: (
4647
<>
4748
Diagnose and resolve issues effectively with a comprehensive suite of
48-
tools within a unified application.
49+
tools in one place. It's enterprise-ready — includes an MSI installer for
50+
centralized deployment, signed binaries, translations in 16+ languages,
51+
and distribution via package managers like winget and Chocolatey.
4952
</>
5053
),
5154
},
@@ -54,8 +57,9 @@ const FeatureList = [
5457
Svg: require("@site/static/img/undraw_version_control_re_mg66.svg").default,
5558
description: (
5659
<>
57-
NETworkManager is fully open source on GitHub. Review the code, build it
58-
yourself, or contribute to make it even better.
60+
NETworkManager is fully open source on GitHub — no ads, no subscriptions,
61+
no selling your data. Review the code, build it yourself, or contribute
62+
to make it even better."
5963
</>
6064
),
6165
},

Website/src/pages/index.js

Lines changed: 10 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ import ImageGalleryWhois from "@site/docs/img/whois.png";
2626
import ImageGalleryIPGeolocation from "@site/docs/img/ip-geolocation.png";
2727
import ImageGallerySubnetCalculatorCalculator from "@site/docs/img/subnet-calculator--calculator.png";
2828

29-
import ImageGalleryProfilesOverView from "@site/docs/img/profiles--overview.png";
30-
import ImageGalleryProfilesProfileSettings from "@site/docs/img/profiles--profile-settings.png";
31-
import ImageGalleryProfilesGroupSettings from "@site/docs/img/profiles--group-settings.png";
32-
3329
import Heading from "@theme/Heading";
3430
import styles from "./styles.module.css";
3531

@@ -220,30 +216,6 @@ export default function Home() {
220216
},
221217
];
222218

223-
const images2 = [
224-
{
225-
original: ImageGalleryProfilesOverView,
226-
thumbnail: ImageGalleryProfilesOverView,
227-
originalAlt: "Profiles - Overview",
228-
thumbnailAlt: "Profiles - Overview",
229-
description: "Profiles - Overview",
230-
},
231-
{
232-
original: ImageGalleryProfilesProfileSettings,
233-
thumbnail: ImageGalleryProfilesProfileSettings,
234-
originalAlt: "Profiles - Profile settings",
235-
thumbnailAlt: "Profiles - Profile settings",
236-
description: "Profiles - Profile settings",
237-
},
238-
{
239-
original: ImageGalleryProfilesGroupSettings,
240-
thumbnail: ImageGalleryProfilesGroupSettings,
241-
originalAlt: "Profiles - Group settings",
242-
thumbnailAlt: "Profiles - Group settings",
243-
description: "Profiles - Group settings",
244-
},
245-
];
246-
247219
return (
248220
<Layout
249221
title={`${siteConfig.title}`}
@@ -254,7 +226,7 @@ export default function Home() {
254226
<HomepageFeatures />
255227
<div className="container text--center margin-top--xl margin-bottom--xl">
256228
<Heading as="h2">
257-
Explore the powerful features...
229+
📷 Screenshots
258230
</Heading>
259231
<div className="gallery-container1">
260232
<ImageGallery
@@ -263,26 +235,26 @@ export default function Home() {
263235
additionalClass={styles.image}
264236
/>
265237
</div>
266-
<Heading as="h2" className="margin-top--xl">
238+
<p>Overview of various features and tools in NETworkManager.</p>
239+
{/* <Heading as="h2" className="margin-top--xl">
267240
...with tabs, drag & drop...
268-
</Heading>
241+
</Heading> */}
269242
<div className="gallery-container2">
270243
<img
271244
src="./img/preview_tabs_drag_drop.gif"
272245
alt="NETworkManager tabs and drag & drop preview"
273246
className={styles.image}
274247
/>
275248
</div>
276-
<Heading as="h2" className="margin-top--xl">
277-
...and encrypted profiles...
278-
</Heading>
249+
<p>Preview of tabs and drag & drop functionality.</p>
279250
<div className="gallery-container3">
280-
<ImageGallery
281-
autoPlay="true"
282-
items={images2}
283-
additionalClass={styles.image}
251+
<img
252+
src="./img/preview-light-theme.png"
253+
alt="NETworkManager tabs and drag & drop preview"
254+
className={styles.image}
284255
/>
285256
</div>
257+
<p>Preview of tabs and drag & drop functionality.</p>
286258
</div>
287259
</main>
288260
</Layout>

0 commit comments

Comments
 (0)