| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="utf-8" /> |
| <link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| <meta name="theme-color" content="#000000" /> |
| <meta |
| name="description" |
| content="SynapseAI - AI Chat Interface" |
| /> |
| <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> |
| <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> |
| |
| |
| <link rel="preconnect" href="https://fonts.googleapis.com"> |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| <link href="https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap" rel="stylesheet"> |
| |
| <title>SynapseAI</title> |
| |
| <style> |
| * { |
| margin: 0; |
| padding: 0; |
| box-sizing: border-box; |
| } |
| |
| body { |
| font-family: 'Geist', sans-serif; |
| background-color: #ffffff; |
| color: #000000; |
| transition: all 0.3s ease; |
| } |
| |
| body.dark { |
| background-color: #0a0a0a; |
| color: #ffffff; |
| } |
| </style> |
| </head> |
| <body> |
| <noscript>You need to enable JavaScript to run this app.</noscript> |
| <div id="root"></div> |
| |
| |
| <script defer src="https://unpkg.com/lucide@latest/dist/umd/lucide.js"></script> |
| <script> |
| window.addEventListener('DOMContentLoaded', (event) => { |
| if (window.lucide) { |
| window.lucide.createIcons(); |
| } |
| }); |
| </script> |
| </body> |
| </html> |