Last active
March 15, 2026 13:43
-
-
Save reyronald/8f9bd807cc098a6193bd03facc3c5dbb to your computer and use it in GitHub Desktop.
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" class=""> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <link rel="stylesheet" href="./style.css" /> | |
| </head> | |
| <body class=""> | |
| <!-- https://www.youtube.com/watch?v=QaS5GFJkuzc --> | |
| <div | |
| class="py-8 text-center min-h-screen flex justify-center flex-col gap-2" | |
| > | |
| <p class="text-3xl font-bold"> | |
| What do you want to | |
| <span class="text-purple-800">hallucinate</span> | |
| today? | |
| </p> | |
| <p class="text-mauve-700/90">Your bugs, delivered faster</p> | |
| <div class="relative flex mx-auto w-md"> | |
| <textarea | |
| name="txtarea" | |
| id="" | |
| cols="55" | |
| rows="3" | |
| placeholder="Describe your billion dollar idea..." | |
| class="rounded-2xl bg-olive-600 p-4 text-white" | |
| ></textarea> | |
| <button | |
| class=" | |
| absolute h-8 w-8 rounded-md bg-amber-500 p-2 leading-none font-bold text-white | |
| bottom-0 right-0 -translate-x-4 -translate-y-4 | |
| " | |
| > | |
| ↑ | |
| </button> | |
| </div> | |
| <div class="mx-auto inline-flex text-white w-md justify-between"> | |
| <div class="rounded-3xl bg-olive-800/90 px-3 py-2">↑ Technical debt</div> | |
| <div class="rounded-3xl bg-olive-800/90 px-3 py-2">↑ Spaguetti code</div> | |
| <div class="rounded-3xl bg-olive-800/90 px-3 py-2">↑ It works locally</div> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment