| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <link rel="icon" type="image/svg+xml" href="./publish/assets/img/logo.png" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>SkySimHub | Stay Connected Everywhere</title>
- <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=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"
- rel="stylesheet">
- <style>
- body {
- font-family: "Montserrat", sans-serif;
- background-color: #ffffff;
- color: #1e293b;
- margin: 0;
- padding: 0;
- }
- /* Custom Scrollbar - Cleaner for Light UI */
- ::-webkit-scrollbar {
- width: 8px;
- }
- ::-webkit-scrollbar-track {
- background: #f8fafc;
- }
- ::-webkit-scrollbar-thumb {
- background: #cbd5e1;
- border-radius: 10px;
- }
- ::-webkit-scrollbar-thumb:hover {
- background: #94a3b8;
- }
- .infigate-shadow {
- box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
- 0 2px 4px -1px rgba(0, 0, 0, 0.03);
- }
- </style>
- <script type="importmap">
- {
- "imports": {
- "react/": "https://esm.sh/react@^19.2.3/",
- "react": "https://esm.sh/react@^19.2.3",
- "@google/genai": "https://esm.sh/@google/genai@^1.34.0",
- "react-dom/": "https://esm.sh/react-dom@^19.2.3/",
- "react-router-dom": "https://esm.sh/react-router-dom@^7.11.0"
- }
- }
- </script>
- <link rel="stylesheet" href="./src/index.css" />
- </head>
- <body>
- <div id="root"></div>
- <script type="module" src="./src/index.tsx"></script>
- </body>
- </html>
|