Mercurial
view react_games/public/index.html @ 279:b3b547563ec7
Add Google connector service and agent wiki
Implement the C/Seobeo Google Drive and Gmail connector with encrypted OAuth storage, Zenbu authentication, browser testing, AI tool discovery, chunked HTTP decoding, and Bazel coverage. Consolidate repository guidance into progressive wiki documentation and enforce arena-first allocation for new first-party C code.
Co-authored-by: Copilot <[email protected]>
Copilot-Session: 84c338fd-0939-4bb3-b7f3-1062eb213e5d
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 17 Aug 2026 22:22:36 -0700 |
| parents | fb9bcd3145cb |
| children |
line wrap: on
line source
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>TSX Playground!</title> <link rel="stylesheet" type="text/css" href="base.css"></link> <link rel="preload" as="script" href="landing_page.js"></link> </head> <body> <div class="container"> <!-- Animated background particles --> <div class="particle"></div> <div class="particle"></div> <div class="particle"></div> <div class="particle"></div> <!-- Floating shapes --> <div class="floating-shape shape-1"></div> <div class="floating-shape shape-2"></div> <div class="main-content"> <div class="logo-container"> <div class="logo"> </div> </div> <h1>Welcome</h1> <p class="subtitle">Discover games, manage tasks, and explore more</p> <div class="nav-grid"> <a href="/games" class="nav-card games"> <span class="nav-icon">🎮</span> <h3 class="nav-title">Games</h3> <p class="nav-description">Small games all made with SPA</p> </a> <a href="/todo" class="nav-card todo"> <span class="nav-icon">✅</span> <h3 class="nav-title">Todo</h3> <p class="nav-description">Encrypted TODO system</p> </a> </div> </div> </div> <script type="module" src="landing_page.js"></script> </body> </html>