SPB Git

spb/zyquo-cloud-web Public MIT

Zyquo Cloud Web — every cloud model, one beautiful chat, entirely in your browser.

TypeScript 81.9% CSS 8.9% JavaScript 7.5% Shell 1.1% HTML 0.6%
2.3 KB · 47 lines html
Raw Blame History
1<!doctype html>2<!--3  index.html4  Zyquo Cloud Web56  Author: Simon-Pierre Boucher7  Mail: contact@spboucher.ai8-->9<html lang="en">10  <head>11    <meta charset="UTF-8" />12    <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />13    <!--14      Content-Security-Policy (defense-in-depth; the deployment also sends it15      as an HTTP header). connect-src is the exact set of the 12 provider API16      origins, plus localhost for a locally running Zyquo Router / user proxy.17      No third-party scripts, no inline scripts.18    -->19    <meta20      http-equiv="Content-Security-Policy"21      content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob:; font-src 'self' data:; connect-src 'self' https://api.openai.com https://api.anthropic.com https://api.x.ai https://api.mistral.ai https://generativelanguage.googleapis.com https://dashscope-intl.aliyuncs.com https://api.deepseek.com https://api.moonshot.ai https://api.perplexity.ai https://api.together.xyz https://api.deepinfra.com https://api.cerebras.ai http://localhost:* http://127.0.0.1:* ws://localhost:* ws://127.0.0.1:*; worker-src 'self'; object-src 'none'; base-uri 'self'; form-action 'none'; frame-src 'none'"22    />23    <meta name="theme-color" content="#FAFBFD" />24    <meta25      name="description"26      content="Zyquo Cloud Web — multi-provider AI chat that lives entirely in your browser. Your keys, your history, no backend."27    />28    <link rel="icon" type="image/svg+xml" href="%BASE_URL%icons/favicon.svg" />29    <link rel="apple-touch-icon" href="%BASE_URL%icons/apple-touch-icon.png" />30    <!-- OG / social -->31    <meta property="og:title" content="Zyquo Cloud" />32    <meta33      property="og:description"34      content="Every cloud model, one beautiful chat — entirely in your browser. Bring your own keys; nothing leaves your device."35    />36    <meta property="og:type" content="website" />37    <meta property="og:url" content="https://www.zyquo.cloud/" />38    <meta property="og:image" content="https://www.zyquo.cloud/og-image.png" />39    <meta name="twitter:card" content="summary_large_image" />40    <title>Zyquo Cloud</title>41  </head>42  <body>43    <div id="root"></div>44    <script type="module" src="/src/main.tsx"></script>45  </body>46</html>47