Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/brand/apps/miren.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 30 additions & 5 deletions src/pages/app-store.astro
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ try {
the protocol.
</p>
<div class="zoo">
<div class="zoo-card zoo-card-featured">
<div class="zoo-card">
<div class="zoo-top">
<div class="zoo-id">io.pilot.aegis</div>
<img class="zoo-logo zoo-logo-aegis" src="/brand/apps/aegis.svg" alt="AEGIS" />
Expand Down Expand Up @@ -259,7 +259,7 @@ try {
<div class="zoo-install"><code>pilotctl appstore install io.telepat.ideon-free</code></div>
<div class="zoo-stats">
<div class="zoo-stat"><div class="v">2</div><div class="l">Methods</div></div>
<div class="zoo-stat"><div class="v">Free</div><div class="l">Pricing</div></div>
<div class="zoo-stat"><div class="v">5<span class="unit">KB</span></div><div class="l">Download</div></div>
<div class="zoo-stat"><div class="v">writing</div><div class="l">Category</div></div>
</div>
<div class="zoo-foot">
Expand All @@ -281,6 +281,7 @@ try {
rejects unsigned callers. Every method is discoverable at runtime via
<code>slipstream.help</code>.
</div>
<div class="zoo-by">by <a href="https://pilotprotocol.network" target="_blank" rel="noopener">Pilot Protocol</a></div>
<div class="zoo-install"><code>pilotctl appstore install io.pilot.slipstream</code></div>
<div class="zoo-stats">
<div class="zoo-stat"><div class="v">9</div><div class="l">Methods</div></div>
Expand All @@ -292,6 +293,30 @@ try {
<span class="zoo-badge">v1.0.0 · MIT</span>
</div>
</div>

<div class="zoo-card">
<div class="zoo-top">
<div class="zoo-id">io.pilot.miren</div>
<img class="zoo-logo" src="/brand/apps/miren.png" alt="Miren" />
</div>
<div class="zoo-name">Miren</div>
<div class="zoo-desc">
Operate the Miren PaaS from an agent: deploy and roll back apps, inspect
status, logs, and history, run the server, and diagnose connectivity —
plus a passthrough <code>miren.exec</code> for any miren subcommand.
</div>
<div class="zoo-by">by <a href="https://miren.dev" target="_blank" rel="noopener">Miren</a></div>
<div class="zoo-install"><code>pilotctl appstore install io.pilot.miren</code></div>
<div class="zoo-stats">
<div class="zoo-stat"><div class="v">15</div><div class="l">Methods</div></div>
<div class="zoo-stat"><div class="v">4.9<span class="unit">MB</span></div><div class="l">Download</div></div>
<div class="zoo-stat"><div class="v">devops</div><div class="l">Category</div></div>
</div>
<div class="zoo-foot">
<a class="zoo-arr" href="https://miren.dev" target="_blank" rel="noopener">Visit site →</a>
<span class="zoo-badge">v0.1.0 · Proprietary</span>
</div>
</div>
</div>
</div>
</section>
Expand Down Expand Up @@ -392,7 +417,9 @@ try {
description, version+license badge moved to a bottom row. */
/* min-width:0 lets the card (a grid item) shrink to its column on mobile
instead of being stretched to the install command's intrinsic width. */
.zoo-card { cursor: default; min-width: 0; }
.zoo-card { cursor: default; min-width: 0; transition: background 0.15s ease, border-color 0.15s ease; }
/* Accent the card's divider on hover (the yellow line, now interactive). */
.zoo-card:hover { border-color: var(--accent); }
.zoo-card .zoo-top { align-items: center; }
.zoo-card .zoo-id,
.zoo-card .zoo-desc code { overflow-wrap: anywhere; }
Expand All @@ -413,8 +440,6 @@ try {
/* AEGIS logo: black SVG paths, invert on dark theme */
.zoo-logo-aegis { filter: invert(1); }
[data-theme="light"] .zoo-logo-aegis { filter: none; }
/* Featured card: subtle accent border */
.zoo-card-featured { border-color: var(--accent); }
.zoo-by {
font-size: 13px;
color: var(--ink-dim);
Expand Down
Loading