DOCS: promocards + features

Signed-off-by: jokob-sk <jokob.sk@gmail.com>
This commit is contained in:
jokob-sk
2026-01-31 16:05:19 +11:00
parent 604bbbaa5b
commit c201a83474
3 changed files with 29 additions and 30 deletions

View File

@@ -17,7 +17,7 @@ NetAlertX is a lightweight, flexible platform for monitoring networks, tracking
## LAN Visualization ## LAN Visualization
[LAN visualization](./img/FEATURES/LAN_Visualization.png) ![LAN visualization](./img/FEATURES/LAN_Visualization.png)
- **Lightweight Network Map**: View a real-time representation of your local network with all connected devices. - **Lightweight Network Map**: View a real-time representation of your local network with all connected devices.
- **Device Status Indicators**: Quickly identify active, missing, or new devices at a glance. - **Device Status Indicators**: Quickly identify active, missing, or new devices at a glance.
@@ -29,7 +29,7 @@ NetAlertX is a lightweight, flexible platform for monitoring networks, tracking
## Event-Driven Alerts ## Event-Driven Alerts
[Event-Driven Alerts](./img/FEATURES/Event-Driven_Alerts.png) ![Event-Driven Alerts](./img/FEATURES/Event-Driven_Alerts.png)
- **Real-Time Notifications**: Receive immediate alerts for new devices, disconnected devices, or unexpected changes. - **Real-Time Notifications**: Receive immediate alerts for new devices, disconnected devices, or unexpected changes.
- **Customizable Triggers**: Define rules based on device type, IP ranges, presence, or other network parameters. - **Customizable Triggers**: Define rules based on device type, IP ranges, presence, or other network parameters.
@@ -40,7 +40,7 @@ NetAlertX is a lightweight, flexible platform for monitoring networks, tracking
## Multi-Channel Notification ## Multi-Channel Notification
[Multi-Channel Notification](./img/FEATURES/Multi-Channel_Notifications.png) ![Multi-Channel Notification](./img/FEATURES/Multi-Channel_Notifications.png)
- **Flexible Delivery Options**: Send alerts via email, webhooks, MQTT, and more. - **Flexible Delivery Options**: Send alerts via email, webhooks, MQTT, and more.
- **Integration with Automation**: Connect to ticketing systems, workflow engines, and custom scripts for automated responses. - **Integration with Automation**: Connect to ticketing systems, workflow engines, and custom scripts for automated responses.
@@ -50,7 +50,7 @@ NetAlertX is a lightweight, flexible platform for monitoring networks, tracking
## Security & Compliance-Friendly Logging ## Security & Compliance-Friendly Logging
[Events](./img/FEATURES/Events.png) ![Events](./img/FEATURES/Events.png)
- **Device Accountability**: Maintain an auditable record of every device that appears or disappears from the network. - **Device Accountability**: Maintain an auditable record of every device that appears or disappears from the network.
- **Change Tracking**: Document network events with timestamps for review and compliance reporting. - **Change Tracking**: Document network events with timestamps for review and compliance reporting.
@@ -60,7 +60,7 @@ NetAlertX is a lightweight, flexible platform for monitoring networks, tracking
## Extensible & Open Source ## Extensible & Open Source
[Plugins](./img/plugins_json_settings.png) ![Plugins](./img/plugins_json_settings.png)
- **Plugin System**: Extend discovery methods, ingestion types, or notification channels through modular plugins. - **Plugin System**: Extend discovery methods, ingestion types, or notification channels through modular plugins.
- **Community Contributions**: Open-source architecture encourages collaboration and improvements. - **Community Contributions**: Open-source architecture encourages collaboration and improvements.

View File

@@ -11,7 +11,7 @@ Guides and resources to help you set up, configure, and troubleshoot NetAlertX.
<div class="promo-card"> <div class="promo-card">
<h3>Learn</h3> <h3>Learn</h3>
<p>Understand NetAlertX core features, discovery, and alerting concepts</p> <p>Understand NetAlertX core features, discovery, and alerting concepts</p>
<a href="./FEATURES.md" class="promo-button"> <a href="./FEATURES" class="promo-button">
Explore Features Explore Features
</a> </a>
</div> </div>
@@ -19,15 +19,15 @@ Guides and resources to help you set up, configure, and troubleshoot NetAlertX.
<div class="promo-card"> <div class="promo-card">
<h3>Install</h3> <h3>Install</h3>
<p>Step-by-step installation guides for Docker, Home Assistant, Unraid, and bare-metal setups</p> <p>Step-by-step installation guides for Docker, Home Assistant, Unraid, and bare-metal setups</p>
<a href="./INSTALLATION.md" class="promo-button"> <a href="./INSTALLATION" class="promo-button">
View Installation Guides View Installation Guides
</a> </a>
</div> </div>
<div class="promo-card"> <div class="promo-card">
<h3>MSP / Security Lite</h3> <h3>Notifications</h3>
<p>Learn how NetAlertX provides device presence, alerting, and compliance-friendly monitoring for MSPs</p> <p>Learn how NetAlertX provides device presence, alerting, and compliance-friendly monitoring</p>
<a href="./NOTIFICATIONS.md" class="promo-button"> <a href="./NOTIFICATIONS" class="promo-button">
Explore Notifications Explore Notifications
</a> </a>
</div> </div>
@@ -35,7 +35,7 @@ Guides and resources to help you set up, configure, and troubleshoot NetAlertX.
<div class="promo-card"> <div class="promo-card">
<h3>Contribute</h3> <h3>Contribute</h3>
<p>Source code, development environment setup, and contribution guidelines</p> <p>Source code, development environment setup, and contribution guidelines</p>
<a href="./DEV_ENV_SETUP.md" class="promo-button"> <a href="./DEV_ENV_SETUP" class="promo-button">
Contribute on GitHub Contribute on GitHub
</a> </a>
</div> </div>

View File

@@ -14,30 +14,34 @@
* limitations under the License. * limitations under the License.
*/ */
/* --- PROMO CARDS --- */ /* --- PROMO CARDS --- */
.promo-card-wrapper { .promo-card-wrapper {
display: flex; display: flex;
flex-wrap: wrap;
gap: 24px; gap: 24px;
max-width: 1200px; max-width: 1200px;
margin: 60px auto; margin: 60px auto;
flex-wrap: wrap;
} }
.promo-card { .promo-card {
flex: 1; flex: 0 0 calc(50% - 12px);
min-width: 300px; min-width: 300px;
background-color: #f8f9fa;
border-radius: 24px; border-radius: 24px;
padding: 16px 24px; padding: 16px 24px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: flex-start; align-items: flex-start;
background-color: var(--md-primary-bg-color--light);
transition: transform 0.2s ease;
}
.promo-card:hover {
transform: translateY(-2px);
} }
.promo-card h3 { .promo-card h3 {
color: #202124; margin: 0 0 12px;
margin-top: 0; color: var(--md-primary-fg-color);
margin-bottom: 12px;
} }
.promo-card p { .promo-card p {
@@ -45,27 +49,22 @@
flex-grow: 1; flex-grow: 1;
} }
/* --- PROMO BUTTONS --- */
.promo-button, .promo-button,
.learn-more-btn { .learn-more-btn {
display: inline-block; display: inline-block;
padding: 0.5rem 1.2rem; padding: 0.5rem 1.2rem;
border: 1px solid #000; border: 1px solid var(--md-primary-fg-color);
border-radius: 50px; /* Pill shape */ border-radius: 50px;
text-decoration: none; text-decoration: none;
color: #000; color: var(--md-primary-fg-color);
font-weight: 500; font-weight: 500;
font-size: 0.8rem; font-size: 0.8rem;
transition: background-color 0.2s ease-in-out;
background-color: transparent; background-color: transparent;
} transition: opacity 0.2s ease-in-out;
/* Ensure link buttons don't inherit blue color */
:is(a.promo-button, a.learn-more-btn):is(:link, :visited) {
color: #000;
} }
.promo-button:hover, .promo-button:hover,
.learn-more-btn:hover { .learn-more-btn:hover {
background-color: #e9ecef; opacity: 0.8;
color: #000; }
}