mirror of
https://github.com/MeshEnvy/mesh-forge.git
synced 2026-05-05 21:12:44 +02:00
355 lines
8.2 KiB
HTML
355 lines
8.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Mesh Plugin Registry</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family:
|
|
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
"Helvetica Neue", Arial, sans-serif;
|
|
line-height: 1.6;
|
|
color: #1a1a1a;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
min-height: 100vh;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
background: white;
|
|
border-radius: 20px;
|
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
padding: 4rem 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 3rem;
|
|
margin-bottom: 1rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.3rem;
|
|
opacity: 0.95;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.hero-meta {
|
|
font-size: 0.9rem;
|
|
opacity: 0.85;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.hero-meta a {
|
|
color: white;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.main-cta {
|
|
text-align: center;
|
|
padding: 3rem 2rem;
|
|
background: #f8f9ff;
|
|
}
|
|
|
|
.cta-button {
|
|
display: inline-block;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
padding: 1.5rem 3rem;
|
|
border-radius: 12px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
font-size: 1.4rem;
|
|
transition:
|
|
transform 0.2s,
|
|
box-shadow 0.2s;
|
|
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
|
|
}
|
|
|
|
.cta-button:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
|
|
}
|
|
|
|
.content {
|
|
padding: 4rem 2rem;
|
|
}
|
|
|
|
.methods {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 2rem;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.method-card {
|
|
background: #f8f9ff;
|
|
border-radius: 12px;
|
|
padding: 2rem;
|
|
border: 2px solid #e8eaff;
|
|
}
|
|
|
|
.method-card.easy {
|
|
border-color: #667eea;
|
|
}
|
|
|
|
.method-card h3 {
|
|
font-size: 1.5rem;
|
|
color: #667eea;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.method-card .badge {
|
|
display: inline-block;
|
|
background: #667eea;
|
|
color: white;
|
|
padding: 0.25rem 0.75rem;
|
|
border-radius: 12px;
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.method-card .badge.hard {
|
|
background: #6c757d;
|
|
}
|
|
|
|
.method-card p {
|
|
color: #4a4a4a;
|
|
margin-bottom: 1.5rem;
|
|
font-size: 1.05rem;
|
|
}
|
|
|
|
.method-card ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.method-card ul li {
|
|
padding: 0.5rem 0;
|
|
padding-left: 1.5rem;
|
|
position: relative;
|
|
color: #4a4a4a;
|
|
}
|
|
|
|
.method-card ul li::before {
|
|
content: "✓";
|
|
position: absolute;
|
|
left: 0;
|
|
color: #667eea;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.link-button {
|
|
display: inline-block;
|
|
color: #667eea;
|
|
padding: 0.75rem 1.5rem;
|
|
border: 2px solid #667eea;
|
|
border-radius: 8px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
transition:
|
|
background 0.2s,
|
|
color 0.2s;
|
|
}
|
|
|
|
.link-button:hover {
|
|
background: #667eea;
|
|
color: white;
|
|
}
|
|
|
|
.authors {
|
|
background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
|
|
border-radius: 12px;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
border: 2px solid #e8eaff;
|
|
}
|
|
|
|
.authors h3 {
|
|
font-size: 1.5rem;
|
|
color: #667eea;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.authors p {
|
|
color: #4a4a4a;
|
|
margin-bottom: 1.5rem;
|
|
font-size: 1.05rem;
|
|
}
|
|
|
|
.footer {
|
|
background: #f8f9fa;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
color: #6c757d;
|
|
border-top: 1px solid #e0e0e0;
|
|
}
|
|
|
|
.footer a {
|
|
color: #667eea;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.footer a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
body {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.methods {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.content {
|
|
padding: 2rem 1.5rem;
|
|
}
|
|
|
|
.cta-button {
|
|
font-size: 1.2rem;
|
|
padding: 1.25rem 2rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="hero">
|
|
<h1>🔌 Mesh Plugin Registry</h1>
|
|
<p>Extend your Meshtastic firmware with community plugins</p>
|
|
<div class="hero-meta">
|
|
Built by
|
|
<a
|
|
href="https://meshenvy.org"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>MeshEnvy</a
|
|
>
|
|
• Not affiliated with Meshtastic
|
|
</div>
|
|
</div>
|
|
|
|
<div class="main-cta">
|
|
<a
|
|
href="https://meshforge.org/builds/new"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="cta-button"
|
|
>Browse Meshtastic Plugins →</a
|
|
>
|
|
</div>
|
|
|
|
<div class="content">
|
|
<div class="methods">
|
|
<div class="method-card easy">
|
|
<span class="badge">Recommended</span>
|
|
<h3>Mesh Forge</h3>
|
|
<p>
|
|
Build custom firmware with plugins directly in your browser. No
|
|
installation or setup required.
|
|
</p>
|
|
<ul>
|
|
<li>Zero installation</li>
|
|
<li>Simple interface</li>
|
|
<li>Automatic dependencies</li>
|
|
<li>Ready-to-flash files</li>
|
|
</ul>
|
|
<a
|
|
href="https://meshforge.org/builds/new"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="link-button"
|
|
>Get Started →</a
|
|
>
|
|
</div>
|
|
|
|
<div class="method-card">
|
|
<span class="badge hard">Advanced</span>
|
|
<h3>Mesh Plugin Manager</h3>
|
|
<p>
|
|
Command-line tool for building firmware locally. Requires
|
|
PlatformIO and Poetry setup.
|
|
</p>
|
|
<ul>
|
|
<li>Local development</li>
|
|
<li>Full control</li>
|
|
<li>CLI interface</li>
|
|
<li>Developer-focused</li>
|
|
</ul>
|
|
<a
|
|
href="https://pypi.org/project/mesh-plugin-manager/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="link-button"
|
|
>View on PyPI →</a
|
|
>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="authors">
|
|
<h3>Creating Your Own Plugin?</h3>
|
|
<p>
|
|
Check out the plugin development guide for documentation on plugin
|
|
structure, protobuf generation, and module registration.
|
|
</p>
|
|
<a
|
|
href="https://github.com/MeshEnvy/firmware/blob/meshenvy/module-registry/plugins/README.md"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
class="link-button"
|
|
>Plugin Development Guide →</a
|
|
>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>
|
|
Built by
|
|
<a
|
|
href="https://meshenvy.org"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
><strong>MeshEnvy</strong></a
|
|
>
|
|
</p>
|
|
<p style="margin-top: 0.5rem; font-size: 0.9rem">
|
|
<a
|
|
href="https://meshtastic.org"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>Learn more about Meshtastic</a
|
|
>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|