|
59 | 59 | .team-card .reason { font-size: 0.85rem; color: var(--text-faint); margin-top: 0.1rem; line-height: 1.4; } |
60 | 60 | .team-card .quorum .reason { margin-top: 0.25rem; } |
61 | 61 |
|
| 62 | +.deploy-intro { padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: 1rem; } |
| 63 | +.deploy-intro h2 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); font-weight: 500; letter-spacing: -0.02em; margin-bottom: 0.75rem; } |
| 64 | + |
| 65 | +.deploy-block { padding-top: 0; padding-bottom: clamp(2.5rem, 5vw, 4rem); } |
| 66 | +.deploy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.75rem, 1.5vw, 1.25rem); } |
| 67 | +.deploy-card { padding: 2rem; border: 1px solid var(--rule); background: white; display: flex; flex-direction: column; } |
| 68 | +.deploy-card h2 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.75rem; } |
| 69 | +.deploy-card p { font-size: 0.95rem; color: var(--text-soft); margin-bottom: 0.75rem; line-height: 1.55; max-width: none; } |
| 70 | +.deploy-card .tag { margin-top: auto; padding-top: 0.85rem; border-top: 1px solid var(--rule); font-family: var(--mono); font-size: 0.78rem; color: var(--text-faint); letter-spacing: 0.02em; } |
| 71 | + |
| 72 | +.beta-note { margin-top: 2rem; font-family: var(--mono); font-size: 0.78rem; color: var(--text-faint); letter-spacing: 0.02em; max-width: none; } |
| 73 | + |
62 | 74 | section + section { border-top: 0; } |
63 | 75 |
|
64 | 76 | @media (max-width: 880px) { |
65 | 77 | .categories-grid { grid-template-columns: 1fr; } |
66 | 78 | .examples-grid { grid-template-columns: 1fr; } |
| 79 | + .deploy-grid { grid-template-columns: 1fr; } |
67 | 80 | } |
68 | 81 | </style> |
69 | 82 | </head> |
@@ -230,6 +243,35 @@ <h2>Software Development.</h2> |
230 | 243 | </div> |
231 | 244 | </section> |
232 | 245 |
|
| 246 | +<section class="deploy-intro"> |
| 247 | + <div class="wrap"> |
| 248 | + <h2>Deployment Types</h2> |
| 249 | + </div> |
| 250 | +</section> |
| 251 | + |
| 252 | +<section class="deploy-block"> |
| 253 | + <div class="wrap"> |
| 254 | + <div class="deploy-grid"> |
| 255 | + <div class="deploy-card"> |
| 256 | + <h2>Direct.</h2> |
| 257 | + <p>Users interact primarily with the Workbench UI for their daily work, utilizing their agent teams directly.</p> |
| 258 | + <div class="tag">Best for power users</div> |
| 259 | + </div> |
| 260 | + <div class="deploy-card"> |
| 261 | + <h2>Connected.</h2> |
| 262 | + <p>Connected to a primary tool such as Claude Desktop via MCP. Users interact with their primary tool for daily work, utilizing their agent teams through it.</p> |
| 263 | + <div class="tag">Best for business users</div> |
| 264 | + </div> |
| 265 | + <div class="deploy-card"> |
| 266 | + <h2>Server.</h2> |
| 267 | + <p>Agent teams serve organizations and multiple users more broadly.</p> |
| 268 | + <div class="tag">Custom deployment · pay-per-use accounts</div> |
| 269 | + </div> |
| 270 | + </div> |
| 271 | + <p class="beta-note">Workbench is currently in Beta.</p> |
| 272 | + </div> |
| 273 | +</section> |
| 274 | + |
233 | 275 | <footer> |
234 | 276 | <div class="wrap inner"> |
235 | 277 | <div>BlueprintAgentic · © 2026 · All rights reserved</div> |
|
0 commit comments