From c2001e40f623e97ef4a920f0cb322507df0f93e5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Feb 2026 09:45:03 +0000 Subject: [PATCH 1/3] Initial plan From d65953c06ec765aca4acfddca16e5e433a789084 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Feb 2026 09:54:48 +0000 Subject: [PATCH 2/3] Integrate revenue stream into Aria character interface Co-authored-by: Bryan-Roe <74067792+Bryan-Roe@users.noreply.github.com> --- aria_web/index.html | 127 ++++++++++++++++++++++++++++++++++++++++ monetization-index.html | 10 +++- 2 files changed, 135 insertions(+), 2 deletions(-) diff --git a/aria_web/index.html b/aria_web/index.html index 299d12447..8c8367816 100644 --- a/aria_web/index.html +++ b/aria_web/index.html @@ -1008,10 +1008,109 @@ font-size: 0.9em; line-height: 1.6; } + + /* Navigation Bar */ + .nav-bar { + background: rgba(255, 255, 255, 0.95); + border-radius: 50px; + padding: 10px 20px; + margin-bottom: 20px; + box-shadow: 0 5px 15px rgba(0,0,0,0.15); + display: flex; + justify-content: space-between; + align-items: center; + flex-wrap: wrap; + gap: 10px; + } + + .nav-links { + display: flex; + gap: 15px; + align-items: center; + } + + .nav-link { + color: #4a90e2; + text-decoration: none; + padding: 8px 16px; + border-radius: 20px; + transition: all 0.3s; + font-weight: 500; + } + + .nav-link:hover { + background: rgba(102, 126, 234, 0.1); + transform: translateY(-2px); + } + + .nav-link.upgrade-btn { + background: linear-gradient(135deg, #667eea, #764ba2); + color: white; + padding: 10px 24px; + font-weight: 600; + box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3); + } + + .nav-link.upgrade-btn:hover { + transform: translateY(-3px); + box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4); + } + + .subscription-badge { + background: #4caf50; + color: white; + padding: 5px 12px; + border-radius: 15px; + font-size: 0.85em; + font-weight: 600; + } + + .subscription-badge.free { + background: #9e9e9e; + } + + .subscription-badge.pro { + background: linear-gradient(135deg, #667eea, #764ba2); + } + + .subscription-badge.enterprise { + background: linear-gradient(135deg, #ffd700, #ffed4e); + color: #333; + } + + @media (max-width: 768px) { + .nav-bar { + justify-content: center; + } + + .nav-links { + flex-direction: column; + width: 100%; + } + + .nav-link { + width: 100%; + text-align: center; + } + }
Natural movement and realistic appearance with articulated joints! 🦾
@@ -1172,5 +1271,33 @@