| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Getgo | 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=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap"
- rel="stylesheet" />
- <style>
- body {
- font-family: "Atkinson Hyperlegible", 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>
|