agent-relay 1.3.0 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.trajectories/active/traj_3yx9dy148mge.json +42 -0
- package/.trajectories/completed/2026-01/traj_1g7yx6qtg4ai.json +49 -0
- package/.trajectories/completed/2026-01/traj_1g7yx6qtg4ai.md +31 -0
- package/.trajectories/completed/2026-01/traj_4qwd4zmhfwp4.json +49 -0
- package/.trajectories/completed/2026-01/traj_4qwd4zmhfwp4.md +31 -0
- package/.trajectories/completed/2026-01/traj_6unwwmgyj5sq.json +109 -0
- package/.trajectories/completed/2026-01/traj_a0tqx8biw9c4.json +49 -0
- package/.trajectories/completed/2026-01/traj_a0tqx8biw9c4.md +31 -0
- package/.trajectories/completed/2026-01/traj_ax8uungxz2qh.json +66 -0
- package/.trajectories/completed/2026-01/traj_ax8uungxz2qh.md +36 -0
- package/.trajectories/completed/2026-01/traj_c9izbh2snpzf.json +49 -0
- package/.trajectories/completed/2026-01/traj_c9izbh2snpzf.md +31 -0
- package/.trajectories/completed/2026-01/traj_cpn70dw066nt.json +65 -0
- package/.trajectories/completed/2026-01/traj_cpn70dw066nt.md +37 -0
- package/.trajectories/completed/2026-01/traj_erglv2f8t9eh.json +36 -0
- package/.trajectories/completed/2026-01/traj_erglv2f8t9eh.md +21 -0
- package/.trajectories/completed/2026-01/traj_he75f24d1xfm.json +101 -0
- package/.trajectories/completed/2026-01/traj_he75f24d1xfm.md +52 -0
- package/.trajectories/completed/2026-01/traj_lgtodco7dp1n.json +61 -0
- package/.trajectories/completed/2026-01/traj_lgtodco7dp1n.md +36 -0
- package/.trajectories/completed/2026-01/traj_oszg9flv74pk.json +73 -0
- package/.trajectories/completed/2026-01/traj_oszg9flv74pk.md +41 -0
- package/.trajectories/completed/2026-01/traj_pulomd3y8cvj.json +77 -0
- package/.trajectories/completed/2026-01/traj_pulomd3y8cvj.md +42 -0
- package/.trajectories/completed/2026-01/traj_rsavt0jipi3c.json +109 -0
- package/.trajectories/completed/2026-01/traj_rsavt0jipi3c.md +56 -0
- package/.trajectories/completed/2026-01/traj_x721m1j9rzup.json +113 -0
- package/.trajectories/completed/2026-01/traj_x721m1j9rzup.md +57 -0
- package/.trajectories/completed/2026-01/traj_xjqvmep5ed3h.json +61 -0
- package/.trajectories/completed/2026-01/traj_xjqvmep5ed3h.md +36 -0
- package/.trajectories/completed/2026-01/traj_y7n6hfbf7dmg.json +49 -0
- package/.trajectories/completed/2026-01/traj_y7n6hfbf7dmg.md +31 -0
- package/.trajectories/completed/2026-01/traj_yvfkwnkdiso2.json +49 -0
- package/.trajectories/completed/2026-01/traj_yvfkwnkdiso2.md +31 -0
- package/.trajectories/index.json +140 -1
- package/TRAIL_GIT_AUTH_FIX.md +113 -0
- package/deploy/workspace/codex.config.toml +1 -1
- package/deploy/workspace/entrypoint.sh +20 -79
- package/deploy/workspace/gh-relay +156 -0
- package/deploy/workspace/git-credential-relay +5 -1
- package/dist/bridge/multi-project-client.js +13 -10
- package/dist/bridge/spawner.d.ts +2 -0
- package/dist/bridge/spawner.js +19 -1
- package/dist/bridge/types.d.ts +2 -0
- package/dist/cli/index.d.ts +1 -1
- package/dist/cli/index.js +115 -69
- package/dist/cloud/api/admin.js +16 -3
- package/dist/cloud/api/codex-auth-helper.js +28 -8
- package/dist/cloud/api/consensus.d.ts +13 -0
- package/dist/cloud/api/consensus.js +259 -0
- package/dist/cloud/api/daemons.js +205 -1
- package/dist/cloud/api/git.js +37 -7
- package/dist/cloud/api/onboarding.js +4 -1
- package/dist/cloud/api/provider-env.d.ts +5 -0
- package/dist/cloud/api/provider-env.js +27 -0
- package/dist/cloud/api/providers.js +2 -0
- package/dist/cloud/api/test-helpers.js +130 -0
- package/dist/cloud/api/workspaces.js +38 -3
- package/dist/cloud/db/bulk-ingest.d.ts +88 -0
- package/dist/cloud/db/bulk-ingest.js +268 -0
- package/dist/cloud/db/drizzle.d.ts +33 -0
- package/dist/cloud/db/drizzle.js +174 -2
- package/dist/cloud/db/index.d.ts +24 -5
- package/dist/cloud/db/index.js +19 -4
- package/dist/cloud/db/schema.d.ts +397 -3
- package/dist/cloud/db/schema.js +75 -1
- package/dist/cloud/provisioner/index.d.ts +8 -0
- package/dist/cloud/provisioner/index.js +256 -50
- package/dist/cloud/server.js +47 -3
- package/dist/cloud/services/index.d.ts +1 -0
- package/dist/cloud/services/index.js +2 -0
- package/dist/cloud/services/nango.d.ts +3 -4
- package/dist/cloud/services/nango.js +11 -33
- package/dist/cloud/services/workspace-keepalive.d.ts +76 -0
- package/dist/cloud/services/workspace-keepalive.js +234 -0
- package/dist/config/relay-config.d.ts +23 -0
- package/dist/config/relay-config.js +23 -0
- package/dist/daemon/agent-manager.d.ts +20 -1
- package/dist/daemon/agent-manager.js +47 -0
- package/dist/daemon/agent-registry.js +4 -4
- package/dist/daemon/agent-signing.d.ts +158 -0
- package/dist/daemon/agent-signing.js +523 -0
- package/dist/daemon/api.js +18 -1
- package/dist/daemon/cli-auth.d.ts +4 -1
- package/dist/daemon/cli-auth.js +55 -11
- package/dist/daemon/cloud-sync.d.ts +47 -1
- package/dist/daemon/cloud-sync.js +152 -3
- package/dist/daemon/connection.d.ts +28 -0
- package/dist/daemon/connection.js +98 -15
- package/dist/daemon/consensus-integration.d.ts +167 -0
- package/dist/daemon/consensus-integration.js +371 -0
- package/dist/daemon/consensus.d.ts +271 -0
- package/dist/daemon/consensus.js +632 -0
- package/dist/daemon/delivery-tracker.d.ts +34 -0
- package/dist/daemon/delivery-tracker.js +104 -0
- package/dist/daemon/enhanced-features.d.ts +118 -0
- package/dist/daemon/enhanced-features.js +178 -0
- package/dist/daemon/index.d.ts +4 -0
- package/dist/daemon/index.js +5 -0
- package/dist/daemon/rate-limiter.d.ts +68 -0
- package/dist/daemon/rate-limiter.js +130 -0
- package/dist/daemon/router.d.ts +18 -11
- package/dist/daemon/router.js +55 -111
- package/dist/daemon/server.d.ts +13 -1
- package/dist/daemon/server.js +71 -9
- package/dist/daemon/sync-queue.d.ts +116 -0
- package/dist/daemon/sync-queue.js +361 -0
- package/dist/health-worker-manager.d.ts +62 -0
- package/dist/health-worker-manager.js +144 -0
- package/dist/health-worker.d.ts +9 -0
- package/dist/health-worker.js +79 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +5 -1
- package/dist/memory/context-compaction.d.ts +156 -0
- package/dist/memory/context-compaction.js +453 -0
- package/dist/memory/index.d.ts +1 -0
- package/dist/memory/index.js +1 -0
- package/dist/protocol/channels.js +4 -4
- package/dist/protocol/framing.d.ts +72 -10
- package/dist/protocol/framing.js +194 -25
- package/dist/storage/adapter.d.ts +8 -1
- package/dist/storage/adapter.js +11 -0
- package/dist/storage/batched-sqlite-adapter.d.ts +71 -0
- package/dist/storage/batched-sqlite-adapter.js +183 -0
- package/dist/storage/dead-letter-queue.d.ts +196 -0
- package/dist/storage/dead-letter-queue.js +427 -0
- package/dist/storage/dlq-adapter.d.ts +195 -0
- package/dist/storage/dlq-adapter.js +664 -0
- package/dist/trajectory/config.d.ts +32 -14
- package/dist/trajectory/config.js +38 -16
- package/dist/trajectory/integration.js +217 -64
- package/dist/utils/git-remote.d.ts +47 -0
- package/dist/utils/git-remote.js +125 -0
- package/dist/utils/id-generator.d.ts +35 -0
- package/dist/utils/id-generator.js +60 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +1 -0
- package/dist/utils/precompiled-patterns.d.ts +110 -0
- package/dist/utils/precompiled-patterns.js +322 -0
- package/dist/wrapper/auth-detection.js +1 -1
- package/dist/wrapper/base-wrapper.d.ts +36 -0
- package/dist/wrapper/base-wrapper.js +48 -2
- package/dist/wrapper/client.d.ts +14 -4
- package/dist/wrapper/client.js +84 -31
- package/dist/wrapper/idle-detector.d.ts +102 -0
- package/dist/wrapper/idle-detector.js +279 -0
- package/dist/wrapper/parser.d.ts +4 -0
- package/dist/wrapper/parser.js +19 -1
- package/dist/wrapper/pty-wrapper.d.ts +7 -1
- package/dist/wrapper/pty-wrapper.js +51 -27
- package/dist/wrapper/tmux-wrapper.d.ts +12 -1
- package/dist/wrapper/tmux-wrapper.js +65 -17
- package/package.json +5 -5
- package/scripts/run-migrations.js +43 -0
- package/scripts/verify-schema.js +134 -0
- package/tests/benchmarks/protocol.bench.ts +310 -0
- package/dist/dashboard/out/404.html +0 -1
- package/dist/dashboard/out/_next/static/T1tgCqVWHFIkV7ClEtzD7/_buildManifest.js +0 -1
- package/dist/dashboard/out/_next/static/T1tgCqVWHFIkV7ClEtzD7/_ssgManifest.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/116-2502180def231162.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/117-f7b8ab0809342e77.js +0 -2
- package/dist/dashboard/out/_next/static/chunks/282-980c2eb8fff20123.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/532-bace199897eeab37.js +0 -9
- package/dist/dashboard/out/_next/static/chunks/648-5cc6e1921389a58a.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/766-b54f0853794b78c3.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/83-b51836037078006c.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/891-6cd50de1224f70bb.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/899-bb19a9b3d9b39ea6.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/app/_not-found/page-53b8a69f76db17d0.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/app/app/onboarding/page-8939b0fc700f7eca.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/app/app/page-5af1b6b439858aa6.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/app/connect-repos/page-f45ecbc3e06134fc.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/app/history/page-8c8bed33beb2bf1c.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/app/layout-2433bb48965f4333.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/app/login/page-16f3b49e55b1e0ed.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/app/metrics/page-ac39dc0cc3c26fa7.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/app/page-4a5938c18a11a654.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/app/pricing/page-982a7000fee44014.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/app/providers/page-ac3a6ac433fd6001.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/app/providers/setup/[provider]/page-09f9caae98a18c09.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/app/signup/page-547dd0ca55ecd0ba.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/e868780c-48e5f147c90a3a41.js +0 -18
- package/dist/dashboard/out/_next/static/chunks/fd9d1056-609918ca7b6280bb.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/framework-f66176bb897dc684.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/main-2ee6beb2ae96d210.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/main-app-5d692157a8eb1fd9.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/pages/_app-72b849fbd24ac258.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/pages/_error-7ba65e1336b92748.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/polyfills-42372ed130431b0a.js +0 -1
- package/dist/dashboard/out/_next/static/chunks/webpack-1cdd8ed57114d5e1.js +0 -1
- package/dist/dashboard/out/_next/static/css/85d2af9c7ac74d62.css +0 -1
- package/dist/dashboard/out/_next/static/css/fe4b28883eeff359.css +0 -1
- package/dist/dashboard/out/alt-logos/agent-relay-logo-128.png +0 -0
- package/dist/dashboard/out/alt-logos/agent-relay-logo-256.png +0 -0
- package/dist/dashboard/out/alt-logos/agent-relay-logo-32.png +0 -0
- package/dist/dashboard/out/alt-logos/agent-relay-logo-512.png +0 -0
- package/dist/dashboard/out/alt-logos/agent-relay-logo-64.png +0 -0
- package/dist/dashboard/out/alt-logos/agent-relay-logo.svg +0 -45
- package/dist/dashboard/out/alt-logos/logo.svg +0 -38
- package/dist/dashboard/out/alt-logos/monogram-logo-128.png +0 -0
- package/dist/dashboard/out/alt-logos/monogram-logo-256.png +0 -0
- package/dist/dashboard/out/alt-logos/monogram-logo-32.png +0 -0
- package/dist/dashboard/out/alt-logos/monogram-logo-512.png +0 -0
- package/dist/dashboard/out/alt-logos/monogram-logo-64.png +0 -0
- package/dist/dashboard/out/alt-logos/monogram-logo.svg +0 -38
- package/dist/dashboard/out/app/onboarding.html +0 -1
- package/dist/dashboard/out/app/onboarding.txt +0 -7
- package/dist/dashboard/out/app.html +0 -1
- package/dist/dashboard/out/app.txt +0 -7
- package/dist/dashboard/out/apple-icon.png +0 -0
- package/dist/dashboard/out/connect-repos.html +0 -1
- package/dist/dashboard/out/connect-repos.txt +0 -7
- package/dist/dashboard/out/history.html +0 -1
- package/dist/dashboard/out/history.txt +0 -7
- package/dist/dashboard/out/index.html +0 -1
- package/dist/dashboard/out/index.txt +0 -7
- package/dist/dashboard/out/login.html +0 -6
- package/dist/dashboard/out/login.txt +0 -7
- package/dist/dashboard/out/metrics.html +0 -1
- package/dist/dashboard/out/metrics.txt +0 -7
- package/dist/dashboard/out/pricing.html +0 -13
- package/dist/dashboard/out/pricing.txt +0 -7
- package/dist/dashboard/out/providers/setup/claude.html +0 -1
- package/dist/dashboard/out/providers/setup/claude.txt +0 -8
- package/dist/dashboard/out/providers/setup/codex.html +0 -1
- package/dist/dashboard/out/providers/setup/codex.txt +0 -8
- package/dist/dashboard/out/providers.html +0 -1
- package/dist/dashboard/out/providers.txt +0 -7
- package/dist/dashboard/out/signup.html +0 -6
- package/dist/dashboard/out/signup.txt +0 -7
- package/dist/dashboard-server/metrics.d.ts +0 -105
- package/dist/dashboard-server/metrics.js +0 -193
- package/dist/dashboard-server/needs-attention.d.ts +0 -24
- package/dist/dashboard-server/needs-attention.js +0 -78
- package/dist/dashboard-server/server.d.ts +0 -15
- package/dist/dashboard-server/server.js +0 -3776
- package/dist/dashboard-server/start.d.ts +0 -6
- package/dist/dashboard-server/start.js +0 -13
- package/dist/dashboard-server/user-bridge.d.ts +0 -103
- package/dist/dashboard-server/user-bridge.js +0 -189
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@400;500;600&display=swap");:root{--bg-deep:#0a0a0f;--bg-primary:#0d0d14;--bg-secondary:#12121c;--bg-tertiary:#181824;--bg-card:#1a1a28;--bg-elevated:#202030;--text-primary:#f0f0f5;--text-secondary:#a0a0b0;--text-muted:#606070;--text-dim:#404050;--accent-cyan:#00d9ff;--accent-orange:#ff6b35;--accent-teal:#00ffc8;--accent-blue:#0891b2;--accent-green:#00ffc8;--border-subtle:hsla(0,0%,100%,.06);--border-light:hsla(0,0%,100%,.1);--border-medium:hsla(0,0%,100%,.15);--glow-cyan:0 0 30px rgba(0,217,255,.3);--glow-orange:0 0 30px rgba(255,107,53,.3);--glow-teal:0 0 30px rgba(0,255,200,.3);--glow-blue:0 0 30px rgba(8,145,178,.3);--font-display:"Outfit",sans-serif;--font-mono:"IBM Plex Mono",monospace;--font-body:"Inter",sans-serif;--section-padding:120px;--container-max:1280px;--transition-fast:0.15s ease;--transition-medium:0.3s ease;--transition-slow:0.5s ease}.landing-page *,.landing-page :after,.landing-page :before,.pricing-page *,.pricing-page :after,.pricing-page :before{margin:0;padding:0;box-sizing:border-box}.landing-page,.pricing-page{font-family:var(--font-body);font-size:16px;line-height:1.6;color:var(--text-primary);background:var(--bg-deep);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.landing-page a,.pricing-page a{color:inherit;text-decoration:none}.landing-page button,.pricing-page button{font-family:inherit;cursor:pointer;border:none;background:none}.landing-page{position:relative;min-height:100vh;overflow-x:hidden}.landing-bg{position:fixed;inset:0;pointer-events:none;z-index:0}.grid-bg{overflow:hidden}.grid-bg,.grid-lines{position:absolute;inset:0}.grid-lines{background-image:linear-gradient(hsla(0,0%,100%,.02) 1px,transparent 0),linear-gradient(90deg,hsla(0,0%,100%,.02) 1px,transparent 0);background-size:60px 60px;-webkit-mask-image:radial-gradient(ellipse 80% 60% at 50% 0,#000 30%,transparent 70%);mask-image:radial-gradient(ellipse 80% 60% at 50% 0,#000 30%,transparent 70%)}.grid-glow{position:absolute;top:0;left:50%;transform:translateX(-50%);width:100%;height:600px;background:radial-gradient(ellipse 60% 40% at 50% 0,rgba(0,217,255,.08) 0,transparent 70%)}.glow-orbs{inset:0}.glow-orbs,.orb{position:absolute}.orb{border-radius:50%;filter:blur(100px);opacity:.4;animation:float 20s ease-in-out infinite}.orb-1{width:600px;height:600px;background:var(--accent-cyan);top:-200px;left:-200px;animation-delay:0s}.orb-2{width:500px;height:500px;background:var(--accent-teal);top:40%;right:-150px;animation-delay:-7s}.orb-3{width:400px;height:400px;background:var(--accent-orange);bottom:10%;left:20%;animation-delay:-14s}@keyframes float{0%,to{transform:translate(0) scale(1)}25%{transform:translate(30px,-30px) scale(1.05)}50%{transform:translate(-20px,20px) scale(.95)}75%{transform:translate(20px,10px) scale(1.02)}}.nav{position:fixed;top:0;left:0;right:0;z-index:100;padding:20px 40px;transition:var(--transition-medium)}.nav.scrolled{background:rgba(10,10,15,.9);backdrop-filter:blur(20px);border-bottom:1px solid var(--border-subtle);padding:16px 40px}.nav-inner{max-width:var(--container-max);margin:0 auto;justify-content:space-between}.nav-inner,.nav-logo{display:flex;align-items:center}.nav-logo{gap:10px;font-family:var(--font-display);font-weight:700;font-size:20px}.logo-icon{font-size:24px;color:var(--accent-cyan);filter:drop-shadow(var(--glow-cyan))}.nav-links{display:flex;align-items:center;gap:40px}.nav-links a{font-size:14px;font-weight:500;color:var(--text-secondary);transition:var(--transition-fast)}.nav-links a:hover{color:var(--text-primary)}.nav-docs{padding:6px 14px;background:var(--bg-elevated);border-radius:6px;border:1px solid var(--border-light)}.nav-actions{display:flex;align-items:center;gap:12px}.mobile-menu,.mobile-menu-overlay,.mobile-menu-toggle{display:none}.btn-primary{display:inline-flex;align-items:center;gap:8px;padding:12px 24px;background:linear-gradient(135deg,var(--accent-cyan) 0,#00b8d9 100%);color:var(--bg-deep);font-weight:600;font-size:14px;border-radius:8px;transition:var(--transition-fast);box-shadow:0 4px 20px rgba(0,217,255,.3)}.btn-primary:hover{transform:translateY(-2px);box-shadow:0 6px 30px rgba(0,217,255,.4)}.btn-ghost{display:inline-flex;align-items:center;gap:8px;padding:12px 24px;background:transparent;color:var(--text-primary);font-weight:500;font-size:14px;border-radius:8px;border:1px solid var(--border-light);transition:var(--transition-fast)}.btn-ghost:hover{background:hsla(0,0%,100%,.05);border-color:var(--border-medium)}.btn-large{padding:16px 32px;font-size:16px}.btn-full{width:100%;justify-content:center}.btn-arrow{transition:transform var(--transition-fast)}.btn-primary:hover .btn-arrow{transform:translateX(4px)}.play-icon{font-size:10px}.hero{position:relative;z-index:1;min-height:100vh;display:grid;grid-template-columns:1fr 1fr;gap:80px;max-width:var(--container-max);margin:0 auto;padding:140px 40px 100px}.hero,.hero-badge{align-items:center}.hero-badge{display:inline-flex;gap:8px;padding:8px 16px;background:rgba(0,217,255,.1);border:1px solid rgba(0,217,255,.2);border-radius:100px;font-size:13px;font-weight:500;color:var(--accent-cyan);margin-bottom:24px;animation:fadeInUp .6s ease forwards}.badge-dot{width:6px;height:6px;background:var(--accent-cyan);border-radius:50%;animation:pulse 2s ease-in-out infinite}@keyframes pulse{0%,to{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.2)}}.hero-title{font-family:var(--font-display);font-size:clamp(48px,6vw,72px);font-weight:800;line-height:1.1;letter-spacing:-.02em;margin-bottom:24px}.title-line{display:block;animation:fadeInUp .6s ease forwards;animation-delay:.1s;opacity:0}.title-line:nth-child(2){animation-delay:.2s}.title-line.gradient{background:linear-gradient(135deg,var(--accent-cyan) 0,var(--accent-teal) 50%,var(--accent-blue) 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}@keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.hero-subtitle{font-size:18px;line-height:1.7;color:var(--text-secondary);max-width:500px;margin-bottom:40px;animation:fadeInUp .6s ease forwards;animation-delay:.3s;opacity:0}.hero-cta{gap:16px;margin-bottom:60px;animation:fadeInUp .6s ease forwards;animation-delay:.4s}.hero-cta,.hero-stats{display:flex;opacity:0}.hero-stats{align-items:center;gap:32px;animation:fadeInUp .6s ease forwards;animation-delay:.5s}.stat{display:flex;flex-direction:column;gap:4px}.stat-value{font-family:var(--font-display);font-size:28px;font-weight:700;color:var(--text-primary)}.stat-label{font-size:13px;color:var(--text-muted)}.stat-divider{width:1px;height:40px;background:var(--border-light)}.hero-visual{position:relative;animation:fadeIn 1s ease forwards;animation-delay:.6s;opacity:0;overflow:hidden}@keyframes fadeIn{to{opacity:1}}.agent-network{position:relative;width:100%;aspect-ratio:1;max-width:500px;margin:0 auto;overflow:hidden}.network-lines{position:absolute;inset:0;width:100%;height:100%}.network-line{stroke:hsla(0,0%,100%,.1);stroke-width:.5}.network-line-glow{stroke:var(--accent-cyan);stroke-width:1;stroke-dasharray:100;stroke-dashoffset:100;animation:lineFlow 3s ease-in-out infinite;filter:drop-shadow(0 0 4px var(--accent-cyan))}@keyframes lineFlow{0%{stroke-dashoffset:100;opacity:0}50%{opacity:1}to{stroke-dashoffset:-100;opacity:0}}.network-agent{position:absolute;transform:translate(-50%,-50%);display:flex;flex-direction:column;align-items:center;gap:8px}.agent-glow{position:absolute;width:80px;height:80px;background:var(--agent-color);border-radius:50%;filter:blur(30px);opacity:.3;z-index:-1}.agent-icon{width:56px;height:56px;display:flex;align-items:center;justify-content:center;background:var(--bg-card);border:2px solid var(--agent-color);border-radius:16px;font-size:24px;color:var(--agent-color);box-shadow:0 0 20px rgba(0,0,0,.5),inset 0 0 20px hsla(0,0%,100%,.02);transition:var(--transition-medium)}.network-agent.pulse .agent-icon{animation:agentPulse 2s ease-in-out infinite}@keyframes agentPulse{0%,to{box-shadow:0 0 20px rgba(0,0,0,.5),0 0 0 0 var(--agent-color)}50%{box-shadow:0 0 20px rgba(0,0,0,.5),0 0 30px 10px transparent}}.agent-label{font-family:var(--font-mono);font-size:12px;font-weight:500;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.5px;white-space:nowrap;text-overflow:ellipsis;max-width:80px;overflow:hidden}.data-packet{position:absolute;width:8px;height:8px;background:var(--accent-cyan);border-radius:50%;filter:blur(2px);box-shadow:0 0 10px var(--accent-cyan);animation:packetMove 3s ease-in-out infinite}@keyframes packetMove{0%{left:var(--from-x);top:var(--from-y);opacity:0}10%{opacity:1}90%{opacity:1}to{left:var(--to-x);top:var(--to-y);opacity:0}}section{position:relative;z-index:1}.section-header{text-align:center;max-width:700px;margin:0 auto 60px}.section-tag{display:inline-block;font-family:var(--font-mono);font-size:12px;font-weight:500;text-transform:uppercase;letter-spacing:2px;color:var(--accent-cyan);margin-bottom:16px}.section-header h2{font-family:var(--font-display);font-size:clamp(32px,4vw,48px);font-weight:700;margin-bottom:16px}.section-header p{font-size:18px;color:var(--text-secondary)}.demo-section{padding:var(--section-padding) 40px;max-width:var(--container-max);margin:0 auto}.demo-container{perspective:1000px}.demo-window{background:var(--bg-secondary);border:1px solid var(--border-light);border-radius:16px;overflow:hidden;box-shadow:0 0 0 1px hsla(0,0%,100%,.05),0 20px 80px rgba(0,0,0,.5);transform:rotateX(2deg);transition:var(--transition-medium)}.demo-window:hover{transform:rotateX(0deg);box-shadow:0 0 0 1px hsla(0,0%,100%,.1),0 30px 100px rgba(0,0,0,.6)}.window-header{display:flex;align-items:center;padding:16px 20px;background:var(--bg-tertiary);border-bottom:1px solid var(--border-subtle)}.window-dots{display:flex;gap:8px}.dot{width:12px;height:12px;border-radius:50%}.dot.red{background:#ff5f57}.dot.yellow{background:#febc2e}.dot.green{background:#28c840}.window-title{flex:1;text-align:center;font-family:var(--font-mono);font-size:13px;color:var(--text-muted)}.window-status{display:flex;align-items:center;gap:8px;font-size:12px;color:var(--text-muted)}.status-dot{width:8px;height:8px;background:var(--accent-green);border-radius:50%;animation:pulse 2s ease-in-out infinite}.demo-content{display:grid;grid-template-columns:200px 1fr;height:400px}.demo-sidebar{padding:20px;background:var(--bg-tertiary);border-right:1px solid var(--border-subtle)}.sidebar-section{margin-bottom:24px}.sidebar-label{font-family:var(--font-mono);font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:1px;color:var(--text-dim);margin-bottom:12px}.sidebar-agent{display:flex;align-items:center;gap:10px;padding:8px 10px;border-radius:6px;margin-bottom:4px;transition:var(--transition-fast)}.sidebar-agent:hover{background:hsla(0,0%,100%,.03)}.agent-dot{width:8px;height:8px;border-radius:50%}.sidebar-agent .agent-name{flex:1;font-size:13px;color:var(--text-secondary)}.sidebar-agent .agent-status{font-size:8px;color:var(--accent-green)}.demo-messages{padding:20px;overflow-y:auto;display:flex;flex-direction:column;gap:16px}.message{animation:messageSlide .3s ease forwards}@keyframes messageSlide{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.message-header{gap:8px;margin-bottom:6px}.message-header,.message-icon{display:flex;align-items:center}.message-icon{width:24px;height:24px;justify-content:center;border-radius:6px;font-size:12px;color:var(--bg-deep)}.message-from{font-weight:600;font-size:13px;color:var(--msg-color)}.message-arrow{font-size:10px;color:var(--text-dim)}.message-to{font-size:13px;color:var(--text-muted)}.message-time{margin-left:auto;font-size:11px;color:var(--text-dim)}.message-content{font-size:14px;color:var(--text-secondary);line-height:1.6;padding-left:32px}.typing-indicator{display:flex;align-items:center;gap:4px;padding:8px 0 8px 32px}.typing-dot{width:6px;height:6px;background:var(--text-dim);border-radius:50%;animation:typingBounce 1.4s ease-in-out infinite}.typing-dot:nth-child(2){animation-delay:.2s}.typing-dot:nth-child(3){animation-delay:.4s}@keyframes typingBounce{0%,60%,to{transform:translateY(0)}30%{transform:translateY(-6px)}}.demo-caption{text-align:center;margin-top:20px}.demo-caption p{font-size:13px;color:var(--text-dim)}.features-section{padding:var(--section-padding) 40px;max-width:var(--container-max);margin:0 auto}.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.feature-card{padding:32px;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:16px;transition:var(--transition-medium);animation:fadeInUp .6s ease forwards;opacity:0}.feature-card:hover{background:var(--bg-elevated);border-color:var(--border-light);transform:translateY(-4px)}.feature-icon{font-size:32px;margin-bottom:20px}.feature-card h3{font-family:var(--font-display);font-size:18px;font-weight:600;margin-bottom:12px}.feature-card p{font-size:14px;color:var(--text-secondary);line-height:1.6}.providers-section{padding:var(--section-padding) 40px;max-width:var(--container-max);margin:0 auto}.providers-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}.provider-card{padding:40px 32px;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:16px;text-align:center;transition:var(--transition-medium)}.provider-card:hover{border-color:var(--provider-color);box-shadow:0 0 40px rgba(0,0,0,.3)}.provider-icon{font-size:48px;color:var(--provider-color);margin-bottom:16px;filter:drop-shadow(0 0 20px var(--provider-color))}.provider-name{font-family:var(--font-display);font-size:20px;font-weight:600;margin-bottom:8px}.provider-status{font-size:12px;color:var(--accent-green);text-transform:uppercase;letter-spacing:1px}.provider-card.coming-soon{--provider-color:var(--text-dim)}.provider-card.coming-soon .provider-status{color:var(--text-muted)}.pricing-section{padding:var(--section-padding) 40px;max-width:var(--container-max);margin:0 auto}.pricing-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;align-items:stretch}.pricing-card{position:relative;padding:32px;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:16px;transition:var(--transition-medium);display:flex;flex-direction:column}.pricing-card:hover{border-color:var(--border-light)}.pricing-card.highlighted{background:linear-gradient(135deg,rgba(0,217,255,.05),rgba(99,102,241,.05));border-color:var(--accent-cyan);transform:scale(1.02)}.pricing-card .popular-badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);padding:6px 16px;background:linear-gradient(135deg,var(--accent-cyan) 0,var(--accent-blue) 100%);color:var(--bg-deep);font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;border-radius:100px}.pricing-header{margin-bottom:24px;padding-bottom:24px;border-bottom:1px solid var(--border-subtle)}.pricing-header h3{font-family:var(--font-display);font-size:20px;font-weight:600;margin-bottom:12px}.pricing-price{margin-bottom:12px}.pricing-price .price{font-family:var(--font-display);font-size:40px;font-weight:700}.pricing-price .period{font-size:16px;color:var(--text-muted)}.pricing-description{font-size:13px;color:var(--text-muted)}.pricing-features{list-style:none;margin-bottom:32px;flex:1}.pricing-features li{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:var(--text-secondary);padding:8px 0}.pricing-features .check{color:var(--accent-green);font-weight:700}.cta-section{padding:var(--section-padding) 40px;max-width:var(--container-max);margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}.cta-content h2{font-family:var(--font-display);font-size:clamp(32px,4vw,48px);font-weight:700;margin-bottom:16px}.cta-content p{font-size:18px;color:var(--text-secondary);margin-bottom:32px}.cta-buttons{display:flex;gap:16px}.cta-terminal{background:var(--bg-secondary);border:1px solid var(--border-light);border-radius:12px;padding:24px;font-family:var(--font-mono);font-size:14px}.terminal-header{display:flex;align-items:center;gap:12px;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid var(--border-subtle)}.terminal-prompt{color:var(--accent-cyan)}.terminal-text{color:var(--text-primary)}.terminal-output{display:flex;flex-direction:column;gap:8px}.output-line{color:var(--text-secondary)}.output-line.dim{color:var(--text-muted);margin-top:4px}.output-line.cursor:after{content:"▋";animation:cursorBlink 1s step-end infinite;color:var(--accent-cyan)}@keyframes cursorBlink{50%{opacity:0}}.footer{position:relative;z-index:1;border-top:1px solid var(--border-subtle);padding:60px 40px 40px;background:var(--bg-primary)}.footer-inner{max-width:var(--container-max);display:grid;grid-template-columns:1fr 2fr;gap:80px;margin:0 auto 60px}.footer-logo{display:flex;align-items:center;gap:10px;font-family:var(--font-display);font-weight:700;font-size:18px;margin-bottom:12px}.footer-brand p{font-size:14px;color:var(--text-muted)}.footer-links{display:grid;grid-template-columns:repeat(3,1fr);gap:40px}.footer-column h4{font-family:var(--font-display);font-size:14px;font-weight:600;margin-bottom:20px}.footer-column a{display:block;font-size:14px;color:var(--text-muted);padding:6px 0;transition:var(--transition-fast)}.footer-column a:hover{color:var(--text-primary)}.footer-bottom{max-width:var(--container-max);margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding-top:24px;border-top:1px solid var(--border-subtle)}.footer-bottom p{font-size:13px;color:var(--text-dim)}.social-links{display:flex;gap:16px}.social-links a{display:flex;align-items:center;justify-content:center;width:36px;height:36px;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:8px;color:var(--text-muted);transition:var(--transition-fast)}.social-links a:hover{background:var(--bg-elevated);border-color:var(--border-light);color:var(--text-primary)}.mobile-menu-toggle{padding:8px;background:transparent;border:none;cursor:pointer;z-index:102}.hamburger{display:flex;flex-direction:column;justify-content:center;gap:5px;width:24px;height:20px}.hamburger-line{width:100%;height:2px;background:var(--text-primary);border-radius:2px;transition:var(--transition-fast);transform-origin:center}.hamburger.open .hamburger-line:first-child{transform:translateY(7px) rotate(45deg)}.hamburger.open .hamburger-line:nth-child(2){opacity:0;transform:scaleX(0)}.hamburger.open .hamburger-line:nth-child(3){transform:translateY(-7px) rotate(-45deg)}.mobile-menu-overlay{position:fixed;inset:0;background:rgba(0,0,0,.6);opacity:0;visibility:hidden;transition:var(--transition-medium);z-index:99}.mobile-menu-overlay.open{opacity:1;visibility:visible}.mobile-menu{position:fixed;top:0;right:0;width:300px;max-width:85vw;height:100vh;background:var(--bg-secondary);border-left:1px solid var(--border-subtle);transform:translateX(100%);transition:transform var(--transition-medium);z-index:100;overflow-y:auto}.mobile-menu.open{transform:translateX(0)}.mobile-menu-content{padding:100px 24px 40px;display:flex;flex-direction:column;min-height:100%}.mobile-nav-links{display:flex;flex-direction:column;gap:8px;margin-bottom:32px}.mobile-nav-links a{display:block;padding:16px 20px;font-size:16px;font-weight:500;color:var(--text-secondary);border-radius:12px;transition:var(--transition-fast)}.mobile-nav-links a:hover{background:hsla(0,0%,100%,.05);color:var(--text-primary)}.mobile-nav-actions{display:flex;flex-direction:column;gap:12px;margin-top:auto}@media (max-width:1024px){.hero{grid-template-columns:1fr;text-align:center;padding:140px 32px 80px;gap:60px}.hero-subtitle{margin-left:auto;margin-right:auto}.hero-cta,.hero-stats{justify-content:center}.hero-visual{order:-1;margin:0 auto}.agent-network,.hero-visual{max-width:350px}.features-grid,.pricing-grid,.providers-grid{grid-template-columns:repeat(2,1fr)}.cta-section{grid-template-columns:1fr;text-align:center;gap:48px}.cta-buttons{justify-content:center}.cta-terminal{max-width:500px;margin:0 auto}.demo-content{grid-template-columns:160px 1fr}.demo-sidebar{padding:16px}.sidebar-agent{padding:6px 8px}.sidebar-agent .agent-name{font-size:12px}.footer-inner{grid-template-columns:1fr;gap:40px;text-align:center}.footer-brand{display:flex;flex-direction:column;align-items:center}.footer-links{justify-content:center}}@media (max-width:900px){.demo-content{grid-template-columns:1fr;height:auto;min-height:350px}.demo-sidebar{display:none}.demo-messages{max-height:400px}.window-status{display:none}}@media (max-width:850px){.agent-network,.hero-visual{max-width:320px}.agent-icon{width:50px;height:50px;font-size:20px}.agent-label{font-size:11px}}@media (max-width:768px){:root{--section-padding:80px}.mobile-menu,.mobile-menu-overlay,.mobile-menu-toggle{display:block}.nav{padding:16px 20px}.nav.scrolled{padding:12px 20px}.nav-actions,.nav-links{display:none}.hero{padding:120px 20px 60px;gap:40px}.hero-title{font-size:clamp(32px,8vw,42px)}.hero-badge{padding:6px 12px;font-size:12px;margin-bottom:20px}.hero-subtitle{font-size:16px;margin-bottom:32px}.hero-cta{flex-direction:column;align-items:center;gap:12px;margin-bottom:40px}.hero-cta .btn-large{width:100%;max-width:280px;justify-content:center}.hero-stats{flex-wrap:wrap;gap:20px}.stat{min-width:80px}.stat-value{font-size:24px}.stat-label{font-size:11px}.stat-divider{display:none}.agent-network,.hero-visual{width:100%;max-width:320px}.agent-network{min-width:280px;aspect-ratio:1.2}.agent-icon{width:48px;height:48px;font-size:18px;border-radius:12px}.agent-label{font-size:10px}.agent-glow{width:50px;height:50px;filter:blur(20px)}.section-header{margin-bottom:40px;padding:0 8px}.section-header h2{font-size:clamp(26px,6vw,36px)}.section-header p{font-size:15px}.demo-section{padding:var(--section-padding) 20px}.demo-window{border-radius:12px}.window-header{padding:12px 16px}.window-dots{gap:6px}.dot{width:10px;height:10px}.window-title{font-size:11px}.demo-messages{padding:16px;gap:12px;max-height:320px}.message-header{flex-wrap:wrap;gap:6px}.message-icon{width:20px;height:20px;font-size:10px}.message-from,.message-to{font-size:12px}.message-time{width:100%;margin-left:26px;margin-top:4px}.message-content{font-size:13px;padding-left:26px}.demo-caption p{font-size:12px}.features-section{padding:var(--section-padding) 20px}.features-grid{grid-template-columns:1fr;gap:16px}.feature-card{padding:24px;border-radius:12px}.feature-icon{font-size:28px;margin-bottom:16px}.feature-card h3{font-size:16px;margin-bottom:8px}.feature-card p{font-size:13px}.providers-section{padding:var(--section-padding) 20px}.providers-grid{grid-template-columns:repeat(2,1fr);gap:16px}.provider-card{padding:24px 16px;border-radius:12px}.provider-icon{font-size:36px;margin-bottom:12px}.provider-name{font-size:16px;margin-bottom:4px}.provider-status{font-size:10px}.pricing-section{padding:var(--section-padding) 20px}.pricing-grid{grid-template-columns:1fr;gap:20px}.pricing-card{padding:24px;border-radius:14px}.pricing-card.highlighted{transform:none}.pricing-header h3{font-size:18px}.pricing-price .price{font-size:32px}.pricing-features li{font-size:13px;padding:6px 0}.cta-section{padding:var(--section-padding) 20px;gap:32px}.cta-content h2{font-size:clamp(26px,6vw,36px)}.cta-content p{font-size:15px;margin-bottom:24px}.cta-buttons{flex-direction:column;align-items:center}.cta-buttons .btn-large{width:100%;max-width:280px;justify-content:center}.cta-terminal{padding:20px;border-radius:10px}.terminal-header{margin-bottom:16px;padding-bottom:12px}.cta-terminal,.terminal-output{font-size:12px}.terminal-output{gap:6px}.footer{padding:40px 20px 32px}.footer-inner{gap:32px;margin-bottom:32px}.footer-logo{font-size:16px;justify-content:center}.footer-brand p{font-size:13px}.footer-links{grid-template-columns:repeat(3,1fr);gap:24px;text-align:left}.footer-column h4{font-size:13px;margin-bottom:16px}.footer-column a{font-size:13px;padding:4px 0}.footer-bottom{flex-direction:column;gap:16px;text-align:center;padding-top:20px}.footer-bottom p{font-size:12px}.social-links a{width:32px;height:32px}}@media (max-width:480px){:root{--section-padding:60px}.hero{padding:100px 16px 48px;gap:32px}.hero-title{font-size:28px}.hero-subtitle{font-size:14px;line-height:1.6}.hero-visual{width:100%;max-width:100%;overflow-x:auto;display:flex;justify-content:center}.agent-network{width:280px;min-width:280px;flex-shrink:0}.agent-icon{width:42px;height:42px;font-size:16px;border-radius:10px}.agent-label{font-size:9px}.agent-glow{width:40px;height:40px;filter:blur(15px);opacity:.4}.data-packet{width:6px;height:6px}.hero-stats{gap:16px}.stat-value{font-size:20px}.stat-label{font-size:10px}.section-header h2{font-size:24px}.section-header p{font-size:14px}.demo-section{padding:var(--section-padding) 16px}.demo-messages{padding:12px;max-height:280px}.message-content{font-size:12px;line-height:1.5}.features-section{padding:var(--section-padding) 16px}.feature-card{padding:20px}.providers-section{padding:var(--section-padding) 16px}.providers-grid{gap:12px}.provider-card{padding:20px 12px}.provider-icon{font-size:28px}.provider-name{font-size:14px}.pricing-section{padding:var(--section-padding) 16px}.pricing-card{padding:20px}.pricing-price .price{font-size:28px}.cta-section{padding:var(--section-padding) 16px}.cta-content h2{font-size:24px}.cta-terminal{padding:16px}.footer{padding:32px 16px 24px}.footer-links{grid-template-columns:repeat(2,1fr);gap:24px 16px}.footer-links .footer-column:last-child{grid-column:span 2;text-align:center}.footer-links .footer-column:last-child a{display:inline-block;padding:4px 8px}.mobile-menu{width:100%;max-width:none}}.pricing-page{position:relative;min-height:100vh;overflow-x:hidden}.pricing-bg{position:fixed;inset:0;pointer-events:none;z-index:0}.nav-links a.active{color:var(--accent-cyan)}.pricing-hero{position:relative;z-index:1;padding:180px 40px 80px;text-align:center}.pricing-hero-content{max-width:700px;margin:0 auto}.pricing-hero .hero-badge{display:inline-flex;align-items:center;gap:10px;padding:10px 20px;background:rgba(0,217,255,.08);border:1px solid rgba(0,217,255,.2);border-radius:100px;font-size:14px;font-weight:500;color:var(--accent-cyan);margin-bottom:32px;animation:fadeInUp .6s ease forwards}.badge-icon{font-size:16px;filter:drop-shadow(0 0 8px var(--accent-cyan))}.pricing-hero h1{font-family:var(--font-display);font-size:clamp(40px,5vw,64px);font-weight:800;line-height:1.1;letter-spacing:-.02em;margin-bottom:24px}.pricing-hero .title-line{display:block;animation:fadeInUp .6s ease forwards;opacity:0}.pricing-hero .title-line:first-child{animation-delay:.1s}.pricing-hero .title-line:nth-child(2){animation-delay:.2s}.pricing-hero .title-line.gradient{background:linear-gradient(135deg,var(--accent-cyan) 0,var(--accent-teal) 50%,var(--accent-blue) 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.pricing-hero .hero-subtitle{font-size:18px;line-height:1.8;color:var(--text-secondary);margin-bottom:40px;animation:fadeInUp .6s ease forwards;animation-delay:.3s;opacity:0}.billing-toggle{display:inline-flex;padding:4px;background:var(--bg-card);border:1px solid var(--border-light);border-radius:12px;animation:fadeInUp .6s ease forwards;animation-delay:.4s;opacity:0}.billing-toggle button{position:relative;padding:12px 24px;font-size:14px;font-weight:500;color:var(--text-muted);border-radius:8px;transition:var(--transition-fast)}.billing-toggle button.active{background:var(--bg-elevated);color:var(--text-primary)}.billing-toggle button:hover:not(.active){color:var(--text-secondary)}.save-badge{position:absolute;top:-8px;right:-8px;padding:4px 8px;background:var(--accent-green);color:var(--bg-deep);font-size:10px;font-weight:700;border-radius:100px;text-transform:uppercase;letter-spacing:.5px}.plans-section{position:relative;z-index:1;padding:0 40px 100px;max-width:var(--container-max);margin:0 auto}.plans-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;align-items:start}.plan-card{position:relative;padding:32px;background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:20px;transition:var(--transition-medium)}.plan-card:hover{border-color:var(--border-light);transform:translateY(-4px)}.plan-card.highlighted{background:linear-gradient(135deg,rgba(0,217,255,.08),rgba(99,102,241,.05));border-color:var(--accent-cyan);box-shadow:0 0 60px rgba(0,217,255,.15)}.plan-badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);padding:6px 16px;background:linear-gradient(135deg,var(--accent-cyan) 0,var(--accent-blue) 100%);color:var(--bg-deep);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:1px;border-radius:100px;white-space:nowrap}.plan-header{margin-bottom:24px}.plan-header h3{font-family:var(--font-display);font-size:24px;font-weight:700;margin-bottom:4px}.plan-tagline{font-size:13px;color:var(--text-muted)}.plan-price{margin-bottom:16px}.plan-price .price{font-family:var(--font-display);font-size:48px;font-weight:800;letter-spacing:-.02em}.plan-price .period{font-size:14px;color:var(--text-muted);margin-left:4px}.plan-description{font-size:14px;color:var(--text-secondary);line-height:1.6;margin-bottom:24px;min-height:44px}.plan-limits{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;padding:20px;background:rgba(0,0,0,.2);border-radius:12px;margin-bottom:24px}.limit-item{display:flex;flex-direction:column;align-items:center;gap:4px;padding:8px}.limit-icon{font-size:16px;color:var(--accent-cyan);opacity:.6}.limit-value{font-family:var(--font-display);font-size:24px;font-weight:700;color:var(--text-primary)}.limit-label{font-size:11px;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px}.comparison-section{position:relative;z-index:1;padding:var(--section-padding) 40px;max-width:var(--container-max);margin:0 auto}.comparison-table-wrapper{overflow-x:auto;border-radius:16px;border:1px solid var(--border-subtle);background:var(--bg-card)}.comparison-table{width:100%;border-collapse:collapse;font-size:14px}.comparison-table td,.comparison-table th{padding:16px 24px;text-align:center;border-bottom:1px solid var(--border-subtle)}.comparison-table th{font-family:var(--font-display);font-weight:600;font-size:16px;background:var(--bg-tertiary)}.comparison-table th.highlighted{background:rgba(0,217,255,.1);color:var(--accent-cyan)}.comparison-table td.highlighted{background:rgba(0,217,255,.03)}.comparison-table .feature-col{text-align:left;font-weight:500;color:var(--text-secondary)}.comparison-table .check{color:var(--accent-green);font-size:18px;font-weight:700}.comparison-table .dash{color:var(--text-dim)}.comparison-table .feature-value{color:var(--text-primary);font-weight:500}.comparison-table tbody tr:last-child td{border-bottom:none}.comparison-table tbody tr:hover td{background:hsla(0,0%,100%,.02)}.comparison-table tbody tr:hover td.highlighted{background:rgba(0,217,255,.05)}.faq-section{position:relative;z-index:1;padding:var(--section-padding) 40px;max-width:900px;margin:0 auto}.faq-grid{display:flex;flex-direction:column;gap:12px}.faq-item{background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:12px;overflow:hidden;cursor:pointer;transition:var(--transition-fast)}.faq-item:hover{border-color:var(--border-light)}.faq-item.open{border-color:var(--accent-cyan);background:rgba(0,217,255,.03)}.faq-question{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;font-weight:500;font-size:15px}.faq-toggle{font-size:24px;color:var(--text-muted);line-height:1;transition:var(--transition-fast)}.faq-item.open .faq-toggle{color:var(--accent-cyan)}.faq-answer{max-height:0;overflow:hidden;transition:max-height .3s ease}.faq-item.open .faq-answer{max-height:300px}.faq-answer p{padding:0 24px 20px;font-size:14px;color:var(--text-secondary);line-height:1.7}.pricing-page .cta-section{padding:var(--section-padding) 40px;max-width:var(--container-max);margin:0 auto}.cta-card{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;padding:60px;background:linear-gradient(135deg,var(--bg-card) 0,var(--bg-secondary) 100%);border:1px solid var(--border-light);border-radius:24px;overflow:hidden}.cta-card .cta-content h2{font-family:var(--font-display);font-size:36px;font-weight:700;margin-bottom:12px}.cta-card .cta-content p{font-size:16px;color:var(--text-secondary);margin-bottom:32px}.orbit{position:relative;width:300px;height:300px;margin:0 auto}.orbit-ring{position:absolute;border:1px solid var(--border-subtle);border-radius:50%;animation:spin 20s linear infinite}.ring-1{width:100%;height:100%;top:0;left:0}.ring-2{width:70%;height:70%;top:15%;left:15%;animation-duration:15s;animation-direction:reverse}.ring-3{width:40%;height:40%;top:30%;left:30%;animation-duration:10s}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.orbit-center{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:40px;color:var(--accent-cyan);filter:drop-shadow(var(--glow-cyan))}.orbit-dot{position:absolute;font-size:20px;animation:orbitMove 6s ease-in-out infinite}.dot-1{top:0;left:50%;transform:translateX(-50%);color:var(--accent-cyan);animation-delay:0s}.dot-2{top:50%;right:0;transform:translateY(-50%);color:var(--accent-orange);animation-delay:-2s}.dot-3{bottom:15%;left:15%;color:var(--accent-teal);animation-delay:-4s}@keyframes orbitMove{0%,to{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(.8)}}@media (max-width:1024px){.plans-grid{grid-template-columns:repeat(2,1fr)}.cta-card{grid-template-columns:1fr;text-align:center}.cta-card .cta-content{order:1}.cta-visual{order:0}.orbit{width:200px;height:200px}}@media (max-width:768px){.pricing-hero{padding:120px 20px 48px}.pricing-hero h1{font-size:clamp(32px,8vw,48px)}.pricing-hero .hero-subtitle{font-size:15px;line-height:1.7}.billing-toggle{width:100%;max-width:280px}.billing-toggle button{flex:1;padding:10px 16px;font-size:13px}.plans-section{padding:0 20px 60px}.plans-grid{grid-template-columns:1fr;gap:20px}.plan-card{padding:24px;border-radius:16px}.plan-card.highlighted{transform:none}.plan-header h3{font-size:20px}.plan-price .price{font-size:40px}.plan-limits{padding:16px;gap:8px}.limit-value{font-size:20px}.limit-label{font-size:10px}.comparison-section{padding:60px 20px}.comparison-table-wrapper{border-radius:12px}.comparison-table td,.comparison-table th{padding:10px 12px;font-size:12px}.comparison-table th{font-size:13px}.faq-section{padding:60px 20px}.faq-question{padding:16px 20px;font-size:14px}.faq-answer p{padding:0 20px 16px;font-size:13px}.pricing-page .cta-section{padding:60px 20px}.cta-card{padding:32px 20px;border-radius:16px;gap:40px}.cta-card .cta-content h2{font-size:28px}.cta-card .cta-content p{font-size:14px;margin-bottom:24px}.cta-buttons{flex-direction:column;align-items:center}.cta-buttons .btn-large{width:100%;max-width:260px}.orbit{width:160px;height:160px}.orbit-center{font-size:28px}.orbit-dot{font-size:14px}}@media (max-width:480px){.pricing-hero{padding:100px 16px 40px}.pricing-hero h1{font-size:28px}.pricing-hero .hero-subtitle{font-size:14px}.pricing-hero .hero-badge{padding:8px 14px;font-size:12px;margin-bottom:24px}.plans-section{padding:0 16px 48px}.plan-card{padding:20px}.plan-price .price{font-size:36px}.comparison-section{padding:48px 16px}.comparison-table td,.comparison-table th{padding:8px;font-size:11px}.faq-section,.pricing-page .cta-section{padding:48px 16px}.cta-card{padding:24px 16px}.cta-card .cta-content h2{font-size:24px}.orbit{width:140px;height:140px}}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
<svg width="512" height="512" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Agent Relay logo" fill="none">
|
|
2
|
-
<defs>
|
|
3
|
-
<linearGradient id="primary" x1="128" y1="80" x2="384" y2="420" gradientUnits="userSpaceOnUse">
|
|
4
|
-
<stop offset="0" stop-color="#00d9ff" />
|
|
5
|
-
<stop offset="1" stop-color="#00ffc8" />
|
|
6
|
-
</linearGradient>
|
|
7
|
-
<linearGradient id="orbit" x1="96" y1="180" x2="416" y2="332" gradientUnits="userSpaceOnUse">
|
|
8
|
-
<stop offset="0" stop-color="#a855f7" />
|
|
9
|
-
<stop offset="0.55" stop-color="#00d9ff" />
|
|
10
|
-
<stop offset="1" stop-color="#ff6b35" />
|
|
11
|
-
</linearGradient>
|
|
12
|
-
<linearGradient id="signal" x1="220" y1="180" x2="360" y2="360" gradientUnits="userSpaceOnUse">
|
|
13
|
-
<stop offset="0" stop-color="#00d9ff" />
|
|
14
|
-
<stop offset="1" stop-color="#ffffff" />
|
|
15
|
-
</linearGradient>
|
|
16
|
-
<filter id="glow" x="0" y="0" width="512" height="512" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse">
|
|
17
|
-
<feGaussianBlur stdDeviation="8" result="blur" />
|
|
18
|
-
<feColorMatrix in="blur" type="matrix" values="0 0 0 0 0.0 0 0 0 0 0.85 0 0 0 0 1.0 0 0 0 0.6 0" result="color" />
|
|
19
|
-
<feMerge>
|
|
20
|
-
<feMergeNode in="color" />
|
|
21
|
-
<feMergeNode in="SourceGraphic" />
|
|
22
|
-
</feMerge>
|
|
23
|
-
</filter>
|
|
24
|
-
</defs>
|
|
25
|
-
|
|
26
|
-
<g filter="url(#glow)">
|
|
27
|
-
<ellipse cx="256" cy="252" rx="174" ry="94" transform="rotate(-18 256 252)" stroke="url(#orbit)" stroke-width="12" stroke-linecap="round" stroke-dasharray="280 150" />
|
|
28
|
-
<ellipse cx="256" cy="260" rx="152" ry="82" transform="rotate(20 256 260)" stroke="#0c1a26" stroke-opacity="0.4" stroke-width="10" stroke-linecap="round" stroke-dasharray="200 140" />
|
|
29
|
-
|
|
30
|
-
<path d="M156 364 L256 120 L356 364" stroke="url(#primary)" stroke-width="20" stroke-linecap="round" stroke-linejoin="round" />
|
|
31
|
-
<path d="M204 260 H312" stroke="url(#primary)" stroke-width="14" stroke-linecap="round" />
|
|
32
|
-
|
|
33
|
-
<path d="M256 188 C 338 176 360 240 300 256 L 360 348" stroke="url(#signal)" stroke-width="14" stroke-linecap="round" stroke-linejoin="round" />
|
|
34
|
-
|
|
35
|
-
<circle cx="256" cy="120" r="14" fill="#00d9ff" />
|
|
36
|
-
<circle cx="156" cy="364" r="10" fill="#a855f7" />
|
|
37
|
-
<circle cx="356" cy="364" r="10" fill="#ff6b35" />
|
|
38
|
-
<circle cx="204" cy="260" r="8" fill="#00ffc8" />
|
|
39
|
-
<circle cx="312" cy="260" r="8" fill="#00ffc8" />
|
|
40
|
-
<circle cx="360" cy="348" r="9" fill="#00d9ff" />
|
|
41
|
-
|
|
42
|
-
<path d="M118 244 C 132 196 178 170 218 178" stroke="#00d9ff" stroke-width="6" stroke-linecap="round" stroke-dasharray="8 10" opacity="0.75" />
|
|
43
|
-
<path d="M298 168 C 332 156 374 180 390 214" stroke="#00ffc8" stroke-width="6" stroke-linecap="round" stroke-dasharray="10 12" opacity="0.75" />
|
|
44
|
-
</g>
|
|
45
|
-
</svg>
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<defs>
|
|
3
|
-
<radialGradient id="bg_grad" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
|
|
4
|
-
<stop offset="0%" stop-color="#1a1a2e"/>
|
|
5
|
-
<stop offset="100%" stop-color="#0a0a0f"/>
|
|
6
|
-
</radialGradient>
|
|
7
|
-
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
|
|
8
|
-
<feGaussianBlur stdDeviation="4" result="coloredBlur"/>
|
|
9
|
-
<feMerge>
|
|
10
|
-
<feMergeNode in="coloredBlur"/>
|
|
11
|
-
<feMergeNode in="SourceGraphic"/>
|
|
12
|
-
</feMerge>
|
|
13
|
-
</filter>
|
|
14
|
-
</defs>
|
|
15
|
-
|
|
16
|
-
<!-- Background Circle -->
|
|
17
|
-
<circle cx="256" cy="256" r="256" fill="url(#bg_grad)"/>
|
|
18
|
-
|
|
19
|
-
<!-- Connections -->
|
|
20
|
-
<g stroke="#00d9ff" stroke-width="10" stroke-opacity="0.4" stroke-linecap="round">
|
|
21
|
-
<line x1="256" y1="256" x2="128" y2="128" />
|
|
22
|
-
<line x1="256" y1="256" x2="384" y2="128" />
|
|
23
|
-
<line x1="256" y1="256" x2="128" y2="384" />
|
|
24
|
-
<line x1="256" y1="256" x2="384" y2="384" />
|
|
25
|
-
</g>
|
|
26
|
-
|
|
27
|
-
<!-- Satellite Nodes -->
|
|
28
|
-
<g stroke-width="10">
|
|
29
|
-
<circle cx="128" cy="128" r="32" fill="#0d0d14" stroke="#ff6b35" />
|
|
30
|
-
<circle cx="384" cy="128" r="32" fill="#0d0d14" stroke="#a855f7" />
|
|
31
|
-
<circle cx="128" cy="384" r="32" fill="#0d0d14" stroke="#00ffc8" />
|
|
32
|
-
<circle cx="384" cy="384" r="32" fill="#0d0d14" stroke="#00d9ff" />
|
|
33
|
-
</g>
|
|
34
|
-
|
|
35
|
-
<!-- Central Node -->
|
|
36
|
-
<circle cx="256" cy="256" r="64" fill="#0a0a0f" stroke="#00d9ff" stroke-width="12" filter="url(#glow)"/>
|
|
37
|
-
<circle cx="256" cy="256" r="24" fill="#00d9ff" filter="url(#glow)"/>
|
|
38
|
-
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
<svg width="512" height="512" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<!-- A shape - cyan -->
|
|
3
|
-
<path
|
|
4
|
-
d="M30 80 L 50 20 L 70 80"
|
|
5
|
-
stroke="#00d9ff"
|
|
6
|
-
stroke-width="5"
|
|
7
|
-
stroke-linejoin="round"
|
|
8
|
-
stroke-linecap="round"
|
|
9
|
-
fill="none"
|
|
10
|
-
/>
|
|
11
|
-
<line
|
|
12
|
-
x1="40"
|
|
13
|
-
y1="50"
|
|
14
|
-
x2="60"
|
|
15
|
-
y2="50"
|
|
16
|
-
stroke="#00d9ff"
|
|
17
|
-
stroke-width="5"
|
|
18
|
-
stroke-linecap="round"
|
|
19
|
-
/>
|
|
20
|
-
|
|
21
|
-
<!-- R overlay - teal -->
|
|
22
|
-
<path
|
|
23
|
-
d="M50 20 L 50 80"
|
|
24
|
-
stroke="#00ffc8"
|
|
25
|
-
stroke-width="3"
|
|
26
|
-
stroke-linecap="round"
|
|
27
|
-
opacity="0.8"
|
|
28
|
-
/>
|
|
29
|
-
<path
|
|
30
|
-
d="M50 20 C 80 20 80 50 50 50 L 80 80"
|
|
31
|
-
stroke="#00ffc8"
|
|
32
|
-
stroke-width="3"
|
|
33
|
-
stroke-linecap="round"
|
|
34
|
-
stroke-linejoin="round"
|
|
35
|
-
fill="none"
|
|
36
|
-
opacity="0.8"
|
|
37
|
-
/>
|
|
38
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/85d2af9c7ac74d62.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js"/><script src="/_next/static/chunks/fd9d1056-609918ca7b6280bb.js" async=""></script><script src="/_next/static/chunks/117-f7b8ab0809342e77.js" async=""></script><script src="/_next/static/chunks/main-app-5d692157a8eb1fd9.js" async=""></script><script src="/_next/static/chunks/app/app/onboarding/page-8939b0fc700f7eca.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><!--$!--><template data-dgst="BAILOUT_TO_CLIENT_SIDE_RENDERING"></template><div class="min-h-screen bg-gradient-to-br from-[#0a0a0f] via-[#0d1117] to-[#0a0a0f] flex items-center justify-center"><div class="text-center"><svg class="w-8 h-8 text-accent-cyan animate-spin mx-auto" fill="none" viewBox="0 0 24 24"><circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle><path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z"></path></svg><p class="mt-4 text-text-muted">Loading...</p></div></div><!--/$--><script src="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/85d2af9c7ac74d62.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[9107,[],\"ClientPageRoot\"]\n5:I[4011,[\"615\",\"static/chunks/app/app/onboarding/page-8939b0fc700f7eca.js\"],\"default\",1]\n6:I[4707,[],\"\"]\n7:I[6423,[],\"\"]\n9:I[1060,[],\"\"]\na:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"T1tgCqVWHFIkV7ClEtzD7\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"app\",\"onboarding\"],\"initialTree\":[\"\",{\"children\":[\"app\",{\"children\":[\"onboarding\",{\"children\":[\"__PAGE__\",{}]}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"app\",{\"children\":[\"onboarding\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[\"$\",\"$L4\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$5\"}],null],null],null]},[null,[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"app\",\"children\",\"onboarding\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[null,[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"app\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/85d2af9c7ac74d62.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L8\"],\"globalErrorComponent\":\"$9\",\"missingSlots\":\"$Wa\"}]\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n3:null\n"])</script></body></html>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
2:I[9107,[],"ClientPageRoot"]
|
|
2
|
-
3:I[4011,["615","static/chunks/app/app/onboarding/page-8939b0fc700f7eca.js"],"default",1]
|
|
3
|
-
4:I[4707,[],""]
|
|
4
|
-
5:I[6423,[],""]
|
|
5
|
-
0:["T1tgCqVWHFIkV7ClEtzD7",[[["",{"children":["app",{"children":["onboarding",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",{"children":["app",{"children":["onboarding",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","app","children","onboarding","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","app","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/85d2af9c7ac74d62.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
|
|
6
|
-
6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Agent Relay Dashboard"}],["$","meta","3",{"name":"description","content":"Fleet control dashboard for Agent Relay"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-icon.png?9e7a840704165ca6","type":"image/png","sizes":"256x256"}]]
|
|
7
|
-
1:null
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/85d2af9c7ac74d62.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js"/><script src="/_next/static/chunks/fd9d1056-609918ca7b6280bb.js" async=""></script><script src="/_next/static/chunks/117-f7b8ab0809342e77.js" async=""></script><script src="/_next/static/chunks/main-app-5d692157a8eb1fd9.js" async=""></script><script src="/_next/static/chunks/e868780c-48e5f147c90a3a41.js" async=""></script><script src="/_next/static/chunks/532-bace199897eeab37.js" async=""></script><script src="/_next/static/chunks/891-6cd50de1224f70bb.js" async=""></script><script src="/_next/static/chunks/116-2502180def231162.js" async=""></script><script src="/_next/static/chunks/83-b51836037078006c.js" async=""></script><script src="/_next/static/chunks/899-bb19a9b3d9b39ea6.js" async=""></script><script src="/_next/static/chunks/app/app/page-5af1b6b439858aa6.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div class="min-h-screen bg-gradient-to-br from-[#0a0a0f] via-[#0d1117] to-[#0a0a0f] flex items-center justify-center"><div class="text-center"><svg class="w-8 h-8 text-accent-cyan animate-spin mx-auto" fill="none" viewBox="0 0 24 24"><circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle><path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z"></path></svg><p class="mt-4 text-text-muted">Loading...</p></div></div><script src="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/85d2af9c7ac74d62.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[9107,[],\"ClientPageRoot\"]\n5:I[3330,[\"30\",\"static/chunks/e868780c-48e5f147c90a3a41.js\",\"532\",\"static/chunks/532-bace199897eeab37.js\",\"891\",\"static/chunks/891-6cd50de1224f70bb.js\",\"116\",\"static/chunks/116-2502180def231162.js\",\"83\",\"static/chunks/83-b51836037078006c.js\",\"899\",\"static/chunks/899-bb19a9b3d9b39ea6.js\",\"191\",\"static/chunks/app/app/page-5af1b6b439858aa6.js\"],\"default\",1]\n6:I[4707,[],\"\"]\n7:I[6423,[],\"\"]\n9:I[1060,[],\"\"]\na:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"T1tgCqVWHFIkV7ClEtzD7\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"app\"],\"initialTree\":[\"\",{\"children\":[\"app\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"app\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[\"$\",\"$L4\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$5\"}],null],null],null]},[null,[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"app\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/85d2af9c7ac74d62.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L8\"],\"globalErrorComponent\":\"$9\",\"missingSlots\":\"$Wa\"}]\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n3:null\n"])</script></body></html>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
2:I[9107,[],"ClientPageRoot"]
|
|
2
|
-
3:I[3330,["30","static/chunks/e868780c-48e5f147c90a3a41.js","532","static/chunks/532-bace199897eeab37.js","891","static/chunks/891-6cd50de1224f70bb.js","116","static/chunks/116-2502180def231162.js","83","static/chunks/83-b51836037078006c.js","899","static/chunks/899-bb19a9b3d9b39ea6.js","191","static/chunks/app/app/page-5af1b6b439858aa6.js"],"default",1]
|
|
3
|
-
4:I[4707,[],""]
|
|
4
|
-
5:I[6423,[],""]
|
|
5
|
-
0:["T1tgCqVWHFIkV7ClEtzD7",[[["",{"children":["app",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",{"children":["app",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","app","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/85d2af9c7ac74d62.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
|
|
6
|
-
6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Agent Relay Dashboard"}],["$","meta","3",{"name":"description","content":"Fleet control dashboard for Agent Relay"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-icon.png?9e7a840704165ca6","type":"image/png","sizes":"256x256"}]]
|
|
7
|
-
1:null
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/85d2af9c7ac74d62.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js"/><script src="/_next/static/chunks/fd9d1056-609918ca7b6280bb.js" async=""></script><script src="/_next/static/chunks/117-f7b8ab0809342e77.js" async=""></script><script src="/_next/static/chunks/main-app-5d692157a8eb1fd9.js" async=""></script><script src="/_next/static/chunks/282-980c2eb8fff20123.js" async=""></script><script src="/_next/static/chunks/app/connect-repos/page-f45ecbc3e06134fc.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div class="min-h-screen bg-gradient-to-br from-[#0a0a0f] via-[#0d1117] to-[#0a0a0f] flex items-center justify-center"><div class="text-center"><svg class="w-8 h-8 text-accent-cyan animate-spin mx-auto" fill="none" viewBox="0 0 24 24"><circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle><path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z"></path></svg><p class="mt-4 text-text-muted">Loading...</p></div></div><script src="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/85d2af9c7ac74d62.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[9107,[],\"ClientPageRoot\"]\n5:I[9992,[\"282\",\"static/chunks/282-980c2eb8fff20123.js\",\"70\",\"static/chunks/app/connect-repos/page-f45ecbc3e06134fc.js\"],\"default\",1]\n6:I[4707,[],\"\"]\n7:I[6423,[],\"\"]\n9:I[1060,[],\"\"]\na:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"T1tgCqVWHFIkV7ClEtzD7\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"connect-repos\"],\"initialTree\":[\"\",{\"children\":[\"connect-repos\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"connect-repos\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[\"$\",\"$L4\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$5\"}],null],null],null]},[null,[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"connect-repos\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/85d2af9c7ac74d62.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L8\"],\"globalErrorComponent\":\"$9\",\"missingSlots\":\"$Wa\"}]\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n3:null\n"])</script></body></html>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
2:I[9107,[],"ClientPageRoot"]
|
|
2
|
-
3:I[9992,["282","static/chunks/282-980c2eb8fff20123.js","70","static/chunks/app/connect-repos/page-f45ecbc3e06134fc.js"],"default",1]
|
|
3
|
-
4:I[4707,[],""]
|
|
4
|
-
5:I[6423,[],""]
|
|
5
|
-
0:["T1tgCqVWHFIkV7ClEtzD7",[[["",{"children":["connect-repos",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",{"children":["connect-repos",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","connect-repos","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/85d2af9c7ac74d62.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
|
|
6
|
-
6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Agent Relay Dashboard"}],["$","meta","3",{"name":"description","content":"Fleet control dashboard for Agent Relay"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-icon.png?9e7a840704165ca6","type":"image/png","sizes":"256x256"}]]
|
|
7
|
-
1:null
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/85d2af9c7ac74d62.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js"/><script src="/_next/static/chunks/fd9d1056-609918ca7b6280bb.js" async=""></script><script src="/_next/static/chunks/117-f7b8ab0809342e77.js" async=""></script><script src="/_next/static/chunks/main-app-5d692157a8eb1fd9.js" async=""></script><script src="/_next/static/chunks/648-5cc6e1921389a58a.js" async=""></script><script src="/_next/static/chunks/116-2502180def231162.js" async=""></script><script src="/_next/static/chunks/app/history/page-8c8bed33beb2bf1c.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div class="min-h-screen bg-bg-primary text-text-primary font-sans"><header class="sticky top-0 z-50 bg-sidebar-bg border-b border-sidebar-border px-4 md:px-8 py-4"><div class="max-w-[1400px] mx-auto flex items-center justify-between"><div class="flex items-center gap-4"><a class="flex items-center gap-2 text-text-muted text-sm font-medium px-3 py-2 rounded-md transition-all hover:text-accent hover:bg-accent/10" href="/"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M19 12H5M12 19l-7-7 7-7"></path></svg><span class="hidden sm:inline">Dashboard</span></a><div class="flex items-center gap-3"><div class="w-8 h-8 bg-gradient-to-br from-accent/80 to-accent rounded-lg flex items-center justify-center border border-accent/30"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg></div><div class="text-lg font-semibold tracking-tight">Conversation <span class="text-accent">History</span></div></div></div></div></header><main class="max-w-[1400px] mx-auto px-4 md:px-8 py-6"><div class="flex flex-col md:flex-row md:items-center gap-4 mb-6"><div class="flex gap-1 bg-bg-secondary rounded-lg p-1 border border-border"><button class="flex items-center gap-2 px-4 py-2 text-sm font-medium rounded-md transition-colors bg-accent text-white"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path></svg>Conversations</button><button class="flex items-center gap-2 px-4 py-2 text-sm font-medium rounded-md transition-colors text-text-muted hover:text-text-primary hover:bg-bg-tertiary"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>Sessions</button><button class="flex items-center gap-2 px-4 py-2 text-sm font-medium rounded-md transition-colors text-text-muted hover:text-text-primary hover:bg-bg-tertiary"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>Messages</button></div><div class="flex-1 flex items-center gap-3"></div></div><div class="flex items-center justify-center h-[60vh]"><div class="flex flex-col items-center gap-4"><div class="w-10 h-10 border-2 border-border border-t-accent rounded-full animate-spin"></div><p class="text-text-muted text-sm">Loading history...</p></div></div></main></div><script src="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/85d2af9c7ac74d62.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[9107,[],\"ClientPageRoot\"]\n5:I[8615,[\"648\",\"static/chunks/648-5cc6e1921389a58a.js\",\"116\",\"static/chunks/116-2502180def231162.js\",\"811\",\"static/chunks/app/history/page-8c8bed33beb2bf1c.js\"],\"default\",1]\n6:I[4707,[],\"\"]\n7:I[6423,[],\"\"]\n9:I[1060,[],\"\"]\na:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"T1tgCqVWHFIkV7ClEtzD7\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"history\"],\"initialTree\":[\"\",{\"children\":[\"history\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"history\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[\"$\",\"$L4\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$5\"}],null],null],null]},[null,[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"history\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/85d2af9c7ac74d62.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L8\"],\"globalErrorComponent\":\"$9\",\"missingSlots\":\"$Wa\"}]\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n3:null\n"])</script></body></html>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
2:I[9107,[],"ClientPageRoot"]
|
|
2
|
-
3:I[8615,["648","static/chunks/648-5cc6e1921389a58a.js","116","static/chunks/116-2502180def231162.js","811","static/chunks/app/history/page-8c8bed33beb2bf1c.js"],"default",1]
|
|
3
|
-
4:I[4707,[],""]
|
|
4
|
-
5:I[6423,[],""]
|
|
5
|
-
0:["T1tgCqVWHFIkV7ClEtzD7",[[["",{"children":["history",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",{"children":["history",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","history","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/85d2af9c7ac74d62.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
|
|
6
|
-
6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Agent Relay Dashboard"}],["$","meta","3",{"name":"description","content":"Fleet control dashboard for Agent Relay"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-icon.png?9e7a840704165ca6","type":"image/png","sizes":"256x256"}]]
|
|
7
|
-
1:null
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/85d2af9c7ac74d62.css" data-precedence="next"/><link rel="stylesheet" href="/_next/static/css/fe4b28883eeff359.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js"/><script src="/_next/static/chunks/fd9d1056-609918ca7b6280bb.js" async=""></script><script src="/_next/static/chunks/117-f7b8ab0809342e77.js" async=""></script><script src="/_next/static/chunks/main-app-5d692157a8eb1fd9.js" async=""></script><script src="/_next/static/chunks/e868780c-48e5f147c90a3a41.js" async=""></script><script src="/_next/static/chunks/532-bace199897eeab37.js" async=""></script><script src="/_next/static/chunks/891-6cd50de1224f70bb.js" async=""></script><script src="/_next/static/chunks/116-2502180def231162.js" async=""></script><script src="/_next/static/chunks/83-b51836037078006c.js" async=""></script><script src="/_next/static/chunks/899-bb19a9b3d9b39ea6.js" async=""></script><script src="/_next/static/chunks/766-b54f0853794b78c3.js" async=""></script><script src="/_next/static/chunks/app/page-4a5938c18a11a654.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div class="flex h-screen bg-bg-deep font-sans text-text-primary items-center justify-center"><div class="text-text-muted">Loading...</div></div><script src="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/85d2af9c7ac74d62.css\",\"style\"]\n2:HL[\"/_next/static/css/fe4b28883eeff359.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"3:I[2846,[],\"\"]\n5:I[9107,[],\"ClientPageRoot\"]\n6:I[7340,[\"30\",\"static/chunks/e868780c-48e5f147c90a3a41.js\",\"532\",\"static/chunks/532-bace199897eeab37.js\",\"891\",\"static/chunks/891-6cd50de1224f70bb.js\",\"116\",\"static/chunks/116-2502180def231162.js\",\"83\",\"static/chunks/83-b51836037078006c.js\",\"899\",\"static/chunks/899-bb19a9b3d9b39ea6.js\",\"766\",\"static/chunks/766-b54f0853794b78c3.js\",\"931\",\"static/chunks/app/page-4a5938c18a11a654.js\"],\"default\",1]\n7:I[4707,[],\"\"]\n8:I[6423,[],\"\"]\na:I[1060,[],\"\"]\nb:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L3\",null,{\"buildId\":\"T1tgCqVWHFIkV7ClEtzD7\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"\"],\"initialTree\":[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"__PAGE__\",{},[[\"$L4\",[\"$\",\"$L5\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$6\"}],[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/fe4b28883eeff359.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]]],null],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/85d2af9c7ac74d62.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L7\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L8\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L9\"],\"globalErrorComponent\":\"$a\",\"missingSlots\":\"$Wb\"}]\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n4:null\n"])</script></body></html>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
2:I[9107,[],"ClientPageRoot"]
|
|
2
|
-
3:I[7340,["30","static/chunks/e868780c-48e5f147c90a3a41.js","532","static/chunks/532-bace199897eeab37.js","891","static/chunks/891-6cd50de1224f70bb.js","116","static/chunks/116-2502180def231162.js","83","static/chunks/83-b51836037078006c.js","899","static/chunks/899-bb19a9b3d9b39ea6.js","766","static/chunks/766-b54f0853794b78c3.js","931","static/chunks/app/page-4a5938c18a11a654.js"],"default",1]
|
|
3
|
-
4:I[4707,[],""]
|
|
4
|
-
5:I[6423,[],""]
|
|
5
|
-
0:["T1tgCqVWHFIkV7ClEtzD7",[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/fe4b28883eeff359.css","precedence":"next","crossOrigin":"$undefined"}]]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/85d2af9c7ac74d62.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
|
|
6
|
-
6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Agent Relay Dashboard"}],["$","meta","3",{"name":"description","content":"Fleet control dashboard for Agent Relay"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-icon.png?9e7a840704165ca6","type":"image/png","sizes":"256x256"}]]
|
|
7
|
-
1:null
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/85d2af9c7ac74d62.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js"/><script src="/_next/static/chunks/fd9d1056-609918ca7b6280bb.js" async=""></script><script src="/_next/static/chunks/117-f7b8ab0809342e77.js" async=""></script><script src="/_next/static/chunks/main-app-5d692157a8eb1fd9.js" async=""></script><script src="/_next/static/chunks/282-980c2eb8fff20123.js" async=""></script><script src="/_next/static/chunks/app/login/page-16f3b49e55b1e0ed.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div class="min-h-screen bg-gradient-to-br from-[#0a0a0f] via-[#0d1117] to-[#0a0a0f] flex flex-col items-center justify-center p-4"><div class="fixed inset-0 opacity-10"><div class="absolute inset-0" style="background-image:linear-gradient(rgba(0, 217, 255, 0.1) 1px, transparent 1px),
|
|
2
|
-
linear-gradient(90deg, rgba(0, 217, 255, 0.1) 1px, transparent 1px);background-size:50px 50px"></div></div><div class="relative z-10 w-full max-w-md"><div class="flex flex-col items-center mb-8"><svg width="48" height="48" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg" class="
|
|
3
|
-
transition-all duration-300
|
|
4
|
-
drop-shadow-[0_0_8px_rgba(0,217,255,0.3)]
|
|
5
|
-
|
|
6
|
-
" aria-label="Agent Relay Logo" role="img"><path d="M30 80 L 50 20 L 70 80" stroke="#00d9ff" stroke-width="5" stroke-linejoin="round" stroke-linecap="round" fill="none"></path><line x1="40" y1="50" x2="60" y2="50" stroke="#00d9ff" stroke-width="5" stroke-linecap="round"></line><path d="M50 20 L 50 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" opacity="0.7"></path><path d="M50 20 C 80 20 80 50 50 50 L 80 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" fill="none" opacity="0.7"></path></svg><h1 class="mt-4 text-2xl font-bold text-white">Agent Relay</h1><p class="mt-2 text-text-muted">Sign in to continue</p></div><div class="bg-bg-primary/80 backdrop-blur-sm border border-border-subtle rounded-2xl p-8 shadow-xl"><div><button type="button" disabled="" class="w-full py-4 px-6 bg-[#24292e] hover:bg-[#2f363d] border border-[#444d56] rounded-xl text-white font-medium flex items-center justify-center gap-3 transition-colors disabled:opacity-50 disabled:cursor-not-allowed"><svg class="w-5 h-5 animate-spin" fill="none" viewBox="0 0 24 24"><circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle><path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z"></path></svg><span>Loading...</span></button><p class="mt-6 text-center text-text-muted text-sm">By signing in, you agree to our<!-- --> <a href="/terms" class="text-accent-cyan hover:underline">Terms of Service</a> <!-- -->and<!-- --> <a href="/privacy" class="text-accent-cyan hover:underline">Privacy Policy</a></p></div></div><div class="mt-6 text-center"><p class="text-text-muted">Don't have an account?<!-- --> <a href="/signup" class="text-accent-cyan hover:underline font-medium">Sign up</a></p></div><div class="mt-4 text-center"><a href="/" class="text-text-muted hover:text-white transition-colors text-sm">Back to home</a></div></div></div><script src="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/85d2af9c7ac74d62.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[9107,[],\"ClientPageRoot\"]\n5:I[6374,[\"282\",\"static/chunks/282-980c2eb8fff20123.js\",\"626\",\"static/chunks/app/login/page-16f3b49e55b1e0ed.js\"],\"default\",1]\n6:I[4707,[],\"\"]\n7:I[6423,[],\"\"]\n9:I[1060,[],\"\"]\na:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"T1tgCqVWHFIkV7ClEtzD7\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"login\"],\"initialTree\":[\"\",{\"children\":[\"login\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"login\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[\"$\",\"$L4\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$5\"}],null],null],null]},[null,[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"login\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/85d2af9c7ac74d62.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L8\"],\"globalErrorComponent\":\"$9\",\"missingSlots\":\"$Wa\"}]\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n3:null\n"])</script></body></html>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
2:I[9107,[],"ClientPageRoot"]
|
|
2
|
-
3:I[6374,["282","static/chunks/282-980c2eb8fff20123.js","626","static/chunks/app/login/page-16f3b49e55b1e0ed.js"],"default",1]
|
|
3
|
-
4:I[4707,[],""]
|
|
4
|
-
5:I[6423,[],""]
|
|
5
|
-
0:["T1tgCqVWHFIkV7ClEtzD7",[[["",{"children":["login",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",{"children":["login",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","login","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/85d2af9c7ac74d62.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
|
|
6
|
-
6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Agent Relay Dashboard"}],["$","meta","3",{"name":"description","content":"Fleet control dashboard for Agent Relay"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-icon.png?9e7a840704165ca6","type":"image/png","sizes":"256x256"}]]
|
|
7
|
-
1:null
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/85d2af9c7ac74d62.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js"/><script src="/_next/static/chunks/fd9d1056-609918ca7b6280bb.js" async=""></script><script src="/_next/static/chunks/117-f7b8ab0809342e77.js" async=""></script><script src="/_next/static/chunks/main-app-5d692157a8eb1fd9.js" async=""></script><script src="/_next/static/chunks/648-5cc6e1921389a58a.js" async=""></script><script src="/_next/static/chunks/116-2502180def231162.js" async=""></script><script src="/_next/static/chunks/app/metrics/page-ac39dc0cc3c26fa7.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div class="min-h-screen bg-bg-primary text-text-primary font-sans"><div class="flex flex-col items-center justify-center h-screen gap-4"><div class="w-8 h-8 border-2 border-border border-t-accent rounded-full animate-spin"></div><p class="text-text-muted text-sm">Loading metrics...</p></div></div><script src="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/85d2af9c7ac74d62.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[9107,[],\"ClientPageRoot\"]\n5:I[5804,[\"648\",\"static/chunks/648-5cc6e1921389a58a.js\",\"116\",\"static/chunks/116-2502180def231162.js\",\"860\",\"static/chunks/app/metrics/page-ac39dc0cc3c26fa7.js\"],\"default\",1]\n6:I[4707,[],\"\"]\n7:I[6423,[],\"\"]\n9:I[1060,[],\"\"]\na:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"T1tgCqVWHFIkV7ClEtzD7\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"metrics\"],\"initialTree\":[\"\",{\"children\":[\"metrics\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"metrics\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[\"$\",\"$L4\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$5\"}],null],null],null]},[null,[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"metrics\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/85d2af9c7ac74d62.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L8\"],\"globalErrorComponent\":\"$9\",\"missingSlots\":\"$Wa\"}]\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n3:null\n"])</script></body></html>
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
2:I[9107,[],"ClientPageRoot"]
|
|
2
|
-
3:I[5804,["648","static/chunks/648-5cc6e1921389a58a.js","116","static/chunks/116-2502180def231162.js","860","static/chunks/app/metrics/page-ac39dc0cc3c26fa7.js"],"default",1]
|
|
3
|
-
4:I[4707,[],""]
|
|
4
|
-
5:I[6423,[],""]
|
|
5
|
-
0:["T1tgCqVWHFIkV7ClEtzD7",[[["",{"children":["metrics",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",{"children":["metrics",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","metrics","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/85d2af9c7ac74d62.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
|
|
6
|
-
6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Agent Relay Dashboard"}],["$","meta","3",{"name":"description","content":"Fleet control dashboard for Agent Relay"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-icon.png?9e7a840704165ca6","type":"image/png","sizes":"256x256"}]]
|
|
7
|
-
1:null
|