docs: add early access / testing disclaimer

Banner on landing page, docs page, and GitHub README warning that the
software is in active development and not yet ready for production use.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jason Staack
2026-03-09 22:49:24 -05:00
parent a3d2172797
commit 28870a61a3
4 changed files with 45 additions and 0 deletions

View File

@@ -2,6 +2,9 @@
**Self-hosted MikroTik fleet management for MSPs.** **Self-hosted MikroTik fleet management for MSPs.**
> **Warning**
> This software is in active development and testing. It is **not yet ready for production use**. APIs, database schemas, and features may change without notice. Use at your own risk.
TOD is a multi-tenant platform for managing RouterOS devices at scale. It replaces TOD is a multi-tenant platform for managing RouterOS devices at scale. It replaces
the chaos of juggling WinBox sessions and SSH terminals across hundreds of routers the chaos of juggling WinBox sessions and SSH terminals across hundreds of routers
with a single, centralized web interface -- fleet visibility, configuration management, with a single, centralized web interface -- fleet visibility, configuration management,

View File

@@ -35,6 +35,13 @@
</head> </head>
<body class="docs-page"> <body class="docs-page">
<!-- ===== TESTING BANNER ===== -->
<div class="testing-banner testing-banner--light">
<div class="container">
<strong>Early Access</strong> &mdash; This software is in active development and testing. It is not yet ready for production use.
</div>
</div>
<!-- ===== NAV ===== --> <!-- ===== NAV ===== -->
<nav class="site-nav site-nav--light"> <nav class="site-nav site-nav--light">
<div class="nav-inner container"> <div class="nav-inner container">

View File

@@ -116,6 +116,15 @@
</div> </div>
</nav> </nav>
<!-- ═══════════════════════════════════════════ -->
<!-- Testing Banner -->
<!-- ═══════════════════════════════════════════ -->
<div class="testing-banner">
<div class="container">
<strong>Early Access</strong> &mdash; This software is in active development and testing. It is not yet ready for production use.
</div>
</div>
<main> <main>
<!-- ═══════════════════════════════════════════ --> <!-- ═══════════════════════════════════════════ -->
<!-- Hero --> <!-- Hero -->

View File

@@ -68,6 +68,32 @@ body {
overflow-x: hidden; overflow-x: hidden;
} }
/* Testing / Early Access banner */
.testing-banner {
background: linear-gradient(90deg, #8B1A1A, #a82222);
color: #F5E6C8;
text-align: center;
padding: 0.5rem 1rem;
font-size: 0.875rem;
letter-spacing: 0.02em;
position: relative;
z-index: 1000;
}
.testing-banner strong {
text-transform: uppercase;
letter-spacing: 0.08em;
}
.testing-banner--light {
background: linear-gradient(90deg, #fef3cd, #fce8b2);
color: #664d03;
}
.testing-banner--light strong {
color: #523e02;
}
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
line-height: 1.2; line-height: 1.2;