|
| 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 | + |
| 7 | + <title>GraphScript Launcher</title> |
| 8 | + <link rel="icon" type="image/svg+xml" href="/GraphScript.png" /> |
| 9 | + |
| 10 | + <meta name="title" content="GraphScript"> |
| 11 | + <meta name="description" content="GraphScript is a general-purpose visual scripting editor that lets you build logic by connecting visual nodes. No code, just flow."> |
| 12 | + |
| 13 | + <meta property="og:type" content="website"> |
| 14 | + <meta property="og:url" content="https://graphscript-labs.github.io/"> |
| 15 | + <meta property="og:title" content="GraphScript"> |
| 16 | + <meta property="og:description" content="GraphScript is a general-purpose visual scripting editor that lets you build logic by connecting visual nodes. No code, just flow."> |
| 17 | + <meta property="og:image" content="https://github.com/GraphScript-Labs/.github/blob/main/Banner.png?raw=true"> |
| 18 | + |
| 19 | + <meta name="twitter:card" content="summary_large_image"> |
| 20 | + <meta name="twitter:url" content="https://graphscript-labs.github.io/"> |
| 21 | + <meta name="twitter:title" content="GraphScript"> |
| 22 | + <meta name="twitter:description" content="GraphScript is a general-purpose visual scripting editor that lets you build logic by connecting visual nodes. No code, just flow."> |
| 23 | + <meta name="twitter:image" content="https://github.com/GraphScript-Labs/.github/blob/main/Banner.png?raw=true"> |
| 24 | + |
| 25 | + <script src="/connector.js"></script> |
| 26 | + |
| 27 | + <style> |
| 28 | + .pywebview-drag-region { |
| 29 | + position: fixed; |
| 30 | + top: 0; |
| 31 | + left: 0; |
| 32 | + width: 100%; |
| 33 | + background: transparent; |
| 34 | + opacity: 0; |
| 35 | + height: 100%; |
| 36 | + z-index: 1; |
| 37 | + } |
| 38 | + </style> |
| 39 | + </head> |
| 40 | + <body> |
| 41 | + <span class="pywebview-drag-region"></span> |
| 42 | + <div id="root"></div> |
| 43 | + |
| 44 | + <script> |
| 45 | + document.addEventListener("contextmenu", (event) => { |
| 46 | + // event.preventDefault(); |
| 47 | + }); |
| 48 | + </script> |
| 49 | + |
| 50 | + <script type="module" src="/src/main.tsx"></script> |
| 51 | + </body> |
| 52 | +</html> |
0 commit comments