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 | <meta http-equiv="content-security-policy" content="default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; frame-src 'self' https:; font-src 'self'; base-uri 'self'; manifest-src 'self'; connect-src 'self' blob: https: wss:; img-src 'self' data: blob: https:; media-src 'self' https:; worker-src 'self';"> |
7 | <link rel="manifest" href="/manifest.json"> |
8 | <title>Runabout - Decentralized Ride Sharing</title> |
9 | <meta name="description" content="Decentralized ride-sharing on Nostr with Lightning payments"> |
10 | <meta name="theme-color" content="#000000"> |
11 | <meta name="mobile-web-app-capable" content="yes"> |
12 | <meta name="apple-mobile-web-app-capable" content="yes"> |
13 | <meta name="apple-mobile-web-app-status-bar-style" content="default"> |
14 | <meta name="apple-mobile-web-app-title" content="Runabout"> |
15 | <meta name="application-name" content="Runabout"> |
16 | <meta name="msapplication-TileColor" content="#000000"> |
17 | <meta name="msapplication-config" content="/browserconfig.xml"> |
18 | <meta property="og:type" content="website"> |
19 | <meta property="og:title" content="Runabout - Decentralized Ride Sharing"> |
20 | <meta property="og:description" content="Decentralized ride-sharing on Nostr with Lightning payments"> |
21 | <link rel="icon" type="image/x-icon" href="/favicon.ico"> |
22 | <link rel="icon" type="image/png" sizes="192x192" href="/icon-192.png"> |
23 | <link rel="icon" type="image/png" sizes="512x512" href="/icon-512.png"> |
24 | <link rel="apple-touch-icon" href="/icon-192.png"> |
25 | </head> |
26 | <body> |
27 | <div id="root"></div> |
28 | <script type="module" src="/src/main.tsx"></script> |
29 | <script src="/sw-register.js"></script> |
30 | </body> |
31 | </html> |
32 |
|