|
1 | 1 | <section style="display: flex; flex-direction: column; height: 100vh;"> |
2 | | - <h2 style="flex-shrink: 0; margin-bottom: 0.3em;">AI-Accelerated Development</h2> |
| 2 | + <h2 style="flex-shrink: 0; margin-bottom: 0.2em;">AI-Accelerated Development</h2> |
3 | 3 |
|
4 | | - <div style="flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center;"> |
5 | | - <p style="font-size: 1.1em; margin-bottom: 0.5em; color: rgba(255,255,255,0.9); text-align: center;"> |
6 | | - Rebuild every internet service, decentralized. |
7 | | - </p> |
8 | | - <p style="font-size: 0.95em; margin-bottom: 1em; color: rgba(255,255,255,0.7); text-align: center;"> |
9 | | - That's a lot of work. <span style="color: #43e97b;">AI changes the economics.</span> |
10 | | - </p> |
| 4 | + <style> |
| 5 | + .ai-dev-content { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 0; } |
| 6 | + .ai-dev-content .tagline { font-size: 1em; margin-bottom: 0.3em; color: rgba(255,255,255,0.9); text-align: center; } |
| 7 | + .ai-dev-content .subline { font-size: 0.85em; margin-bottom: 0.8em; color: rgba(255,255,255,0.7); text-align: center; } |
| 8 | + .ai-dev-boxes { display: flex; gap: 1em; max-width: 90%; } |
| 9 | + .ai-dev-box { flex: 1; border-radius: 10px; padding: 0.8em; } |
| 10 | + .ai-dev-box p.title { font-size: 0.8em; font-weight: 600; margin-bottom: 0.3em; } |
| 11 | + .ai-dev-box ul { font-size: 0.65em; color: rgba(255,255,255,0.8); margin: 0; padding-left: 1em; } |
| 12 | + .ai-dev-box .note { font-size: 0.65em; margin-top: 0.4em; font-style: italic; } |
| 13 | + @media (max-height: 800px) { |
| 14 | + .ai-dev-content .tagline { font-size: 0.9em; } |
| 15 | + .ai-dev-content .subline { font-size: 0.75em; margin-bottom: 0.5em; } |
| 16 | + .ai-dev-box { padding: 0.6em; } |
| 17 | + .ai-dev-box p.title { font-size: 0.7em; } |
| 18 | + .ai-dev-box ul { font-size: 0.55em; } |
| 19 | + .ai-dev-box .note { font-size: 0.55em; } |
| 20 | + } |
| 21 | + </style> |
11 | 22 |
|
12 | | - <div style="display: flex; gap: 1.5em; max-width: 90%;"> |
13 | | - <!-- dapp-builder box --> |
14 | | - <div style="flex: 1; background: rgba(67,233,123,0.1); border: 2px solid rgba(67,233,123,0.4); border-radius: 12px; padding: 1em;"> |
15 | | - <p style="font-size: 0.9em; font-weight: 600; color: #43e97b; margin-bottom: 0.4em;">dapp-builder skill</p> |
16 | | - <ul style="font-size: 0.7em; color: rgba(255,255,255,0.8); margin: 0; padding-left: 1em;"> |
| 23 | + <div class="ai-dev-content"> |
| 24 | + <p class="tagline">Rebuild every internet service, decentralized.</p> |
| 25 | + <p class="subline">That's a lot of work. <span style="color: #43e97b;">AI changes the economics.</span></p> |
| 26 | + |
| 27 | + <div class="ai-dev-boxes"> |
| 28 | + <div class="ai-dev-box" style="background: rgba(67,233,123,0.1); border: 2px solid rgba(67,233,123,0.4);"> |
| 29 | + <p class="title" style="color: #43e97b;">dapp-builder skill</p> |
| 30 | + <ul> |
17 | 31 | <li>Claude scaffolds Freenet apps</li> |
18 | 32 | <li>River architecture patterns</li> |
19 | 33 | <li>Contract → Delegate → UI</li> |
20 | 34 | </ul> |
21 | 35 | </div> |
22 | 36 |
|
23 | | - <!-- AI slop box --> |
24 | | - <div style="flex: 1; background: rgba(79,172,254,0.1); border: 2px solid rgba(79,172,254,0.4); border-radius: 12px; padding: 1em;"> |
25 | | - <p style="font-size: 0.9em; font-weight: 600; color: #4facfe; margin-bottom: 0.4em;">"But isn't AI code garbage?"</p> |
26 | | - <ul style="font-size: 0.7em; color: rgba(255,255,255,0.8); margin: 0; padding-left: 1em;"> |
| 37 | + <div class="ai-dev-box" style="background: rgba(79,172,254,0.1); border: 2px solid rgba(79,172,254,0.4);"> |
| 38 | + <p class="title" style="color: #4facfe;">"But isn't AI code garbage?"</p> |
| 39 | + <ul> |
27 | 40 | <li><em>Unverified</em> code is garbage</li> |
28 | 41 | <li>Solution: CI + comprehensive tests</li> |
29 | 42 | <li>AI drafts, tests verify, humans review</li> |
30 | 43 | </ul> |
31 | | - <p style="font-size: 0.7em; color: #4facfe; margin-top: 0.5em; font-style: italic;"> |
32 | | - Same quality bar. Higher velocity. |
33 | | - </p> |
| 44 | + <p class="note" style="color: #4facfe;">Same quality bar. Higher velocity.</p> |
34 | 45 | </div> |
35 | 46 | </div> |
36 | 47 | </div> |
|
0 commit comments