diff --git a/index.html b/index.html index 0c703a9..734fa7f 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - + diff --git a/package.json b/package.json index 0edbd9e..836cb1d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "amerc-site", - "version": "0.53.0-livescreen", + "version": "0.54.0-discover", "private": true, "type": "module", "scripts": { diff --git a/src/Scene2D.jsx b/src/Scene2D.jsx index fec6328..828c29d 100644 --- a/src/Scene2D.jsx +++ b/src/Scene2D.jsx @@ -7,7 +7,7 @@ import Account from './Account.jsx'; import TavernGame from './TavernGame.jsx'; import { api } from './api.js'; -const RELEASE = '0.53.0-livescreen'; +const RELEASE = '0.54.0-discover'; const NAV = [ { id: 'home', label: 'Tavern' }, @@ -61,8 +61,9 @@ function PixelTopbar({ route, setRoute, auth }) { return (
+ {open &&
{nav}
} @@ -262,9 +263,9 @@ function Footer({ setRoute }) {

Hire, run, and deliver AI agents across software boundaries — no infrastructure, just skills.

- +
Product
diff --git a/src/styles.css b/src/styles.css index 818ca24..75767c6 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1387,3 +1387,9 @@ button { .cl-date { margin-left: auto; color: #7a6a98; font-size: 12px; } .cl-card ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 5px; } .cl-card li { color: #b6a7d4; font-size: 13px; line-height: 1.5; } + +/* clickable version pill + status pill (0.54) */ +.px-ver { font-family: inherit; font-size: 7px; color: #6f5736; background: none; border: 0; cursor: pointer; letter-spacing: 0.5px; padding: 2px 5px; align-self: center; transition: color .15s; white-space: nowrap; } +.px-ver:hover { color: var(--cyan); } +.ft-status { font-family: inherit; cursor: pointer; transition: border-color .15s, transform .15s; } +.ft-status:hover { transform: translateY(-1px); border-color: rgba(54,240,176,0.6); }