|
4 | 4 | <meta charset="UTF-8" /> |
5 | 5 | <link rel="icon" type="image/svg+xml" href="/lovcode.svg" /> |
6 | 6 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
7 | | - <title>Lovcode</title> |
| 7 | + <title>Lovcode - I came, I saw, I conquered</title> |
| 8 | + <meta |
| 9 | + name="description" |
| 10 | + content="Lovcode is a campaign command table for Claude Code, Codex, and terminal sessions." |
| 11 | + /> |
| 12 | + <link rel="canonical" href="https://code.lovstudio.ai/" /> |
| 13 | + <meta property="og:type" content="website" /> |
| 14 | + <meta property="og:url" content="https://code.lovstudio.ai/" /> |
| 15 | + <meta property="og:title" content="Lovcode - I came, I saw, I conquered" /> |
| 16 | + <meta |
| 17 | + property="og:description" |
| 18 | + content="Campaign command table for Claude Code, Codex, and terminal sessions." |
| 19 | + /> |
| 20 | + <meta property="og:image" content="https://code.lovstudio.ai/logo.png" /> |
| 21 | + <meta name="twitter:card" content="summary_large_image" /> |
| 22 | + <meta name="twitter:title" content="Lovcode - I came, I saw, I conquered" /> |
| 23 | + <meta |
| 24 | + name="twitter:description" |
| 25 | + content="Campaign command table for Claude Code, Codex, and terminal sessions." |
| 26 | + /> |
| 27 | + <meta name="twitter:image" content="https://code.lovstudio.ai/logo.png" /> |
8 | 28 | <style> |
9 | 29 | /* Splash screen — paints on the very first frame, before React mounts. |
10 | 30 | Removed by main.tsx once <RouterProvider> renders. */ |
|
77 | 97 | // app shell and the beige background would paint a giant block. |
78 | 98 | (function () { |
79 | 99 | var hash = location.hash || ""; |
| 100 | + if (location.hostname === "code.lovstudio.ai" && (!hash || hash === "#" || hash === "#/")) { |
| 101 | + location.replace("/#/landing"); |
| 102 | + return; |
| 103 | + } |
80 | 104 | if (hash.indexOf("/search-overlay") !== -1 || hash.indexOf("/prompt-detail") !== -1 || hash.indexOf("/landing") !== -1) { |
81 | 105 | var s = document.getElementById("splash"); |
82 | 106 | if (s) s.remove(); |
|
0 commit comments