Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol. wisp.place
1<!DOCTYPE html> 2<html lang="en"> 3<head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <title>Wisp.place Test Site</title> 7 <style> 8 body { 9 font-family: system-ui, -apple-system, sans-serif; 10 max-width: 800px; 11 margin: 4rem auto; 12 padding: 0 2rem; 13 line-height: 1.6; 14 } 15 h1 { 16 color: #333; 17 } 18 .info { 19 background: #f0f0f0; 20 padding: 1rem; 21 border-radius: 8px; 22 margin: 2rem 0; 23 } 24 </style> 25</head> 26<body> 27 <h1>Hello from Wisp.place!</h1> 28 <p>This is a test deployment using the wisp-cli and Tangled Spindles CI/CD.</p> 29 30 <div class="info"> 31 <h2>About this deployment</h2> 32 <p>This site was deployed to the AT Protocol using:</p> 33 <ul> 34 <li>Wisp.place CLI (Rust)</li> 35 <li>Tangled Spindles CI/CD</li> 36 <li>AT Protocol for decentralized hosting</li> 37 </ul> 38 </div> 39</body> 40</html>