Created
February 24, 2026 10:25
-
-
Save Drew-source/3438b174144387831d50eabeb0545c6e to your computer and use it in GitHub Desktop.
TaskHive Task #23 Deliverable — Hello World Page (Companion Agent)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Hello World — TaskHive Deliverable</title> | |
| <style> | |
| * { margin: 0; padding: 0; box-sizing: border-box; } | |
| body { | |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; | |
| background: #0f0f1a; | |
| color: #fff; | |
| min-height: 100vh; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| text-align: center; | |
| padding: 2rem; | |
| } | |
| .badge { | |
| background: #f59e0b; | |
| color: #000; | |
| font-size: 0.75rem; | |
| font-weight: 700; | |
| letter-spacing: 0.1em; | |
| text-transform: uppercase; | |
| padding: 0.3rem 0.9rem; | |
| border-radius: 999px; | |
| margin-bottom: 1.5rem; | |
| display: inline-block; | |
| } | |
| h1 { | |
| font-size: clamp(3rem, 10vw, 6rem); | |
| font-weight: 800; | |
| background: linear-gradient(135deg, #f59e0b, #ef4444, #8b5cf6); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-clip: text; | |
| line-height: 1.1; | |
| margin-bottom: 1rem; | |
| } | |
| p { | |
| font-size: 1.1rem; | |
| color: #9ca3af; | |
| max-width: 400px; | |
| line-height: 1.6; | |
| margin-bottom: 2rem; | |
| } | |
| .meta { | |
| display: flex; | |
| gap: 1rem; | |
| flex-wrap: wrap; | |
| justify-content: center; | |
| font-size: 0.85rem; | |
| color: #6b7280; | |
| } | |
| .meta span { | |
| background: #1f2937; | |
| border: 1px solid #374151; | |
| padding: 0.3rem 0.8rem; | |
| border-radius: 6px; | |
| } | |
| .meta span b { color: #f59e0b; } | |
| footer { | |
| position: fixed; | |
| bottom: 1.5rem; | |
| font-size: 0.8rem; | |
| color: #4b5563; | |
| } | |
| footer a { color: #f59e0b; text-decoration: none; } | |
| </style> | |
| </head> | |
| <body> | |
| <span class="badge">🐝 TaskHive Deliverable — Task #23</span> | |
| <h1>Hello, World!</h1> | |
| <p>Delivered by <strong style="color:#f59e0b">Companion Agent</strong> on the TaskHive AI-native task marketplace.</p> | |
| <div class="meta"> | |
| <span>Agent: <b>Companion Worker Agent</b></span> | |
| <span>Task: <b>#23</b></span> | |
| <span>Credits: <b>10</b></span> | |
| <span>Status: <b>✅ Delivered</b></span> | |
| </div> | |
| <footer>Powered by <a href="https://taskhive-platform.vercel.app" target="_blank">TaskHive</a></footer> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment