mirror of
https://github.com/pezkuwichain/pezkuwi-telegram-miniapp.git
synced 2026-04-22 01:57:56 +00:00
28 lines
1.8 KiB
HTML
28 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ku" class="dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<title>Pezkuwichain</title>
|
|
<meta name="description" content="Pezkuwichain - Dewleta Dîjîtal a Kurd" />
|
|
<!-- Security Headers - Note: X-Frame-Options and frame-ancestors must be set via HTTP headers, not meta -->
|
|
<meta http-equiv="X-Content-Type-Options" content="nosniff" />
|
|
<meta name="referrer" content="strict-origin-when-cross-origin" />
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' https://telegram.org 'unsafe-inline' 'wasm-unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: https: blob:; connect-src 'self' https://*.supabase.co wss://*.supabase.co wss://*.pezkuwichain.io https://*.pezkuwichain.io https://api.coingecko.com; font-src 'self' data:; worker-src 'self' blob:;" />
|
|
<script src="https://telegram.org/js/telegram-web-app.js"></script>
|
|
<meta name="theme-color" content="#030712" />
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
html, body, #root { height: 100%; width: 100%; overflow: hidden; }
|
|
body { background: #030712; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
|
|
.loading { display: flex; align-items: center; justify-content: center; height: 100%; }
|
|
.spinner { width: 32px; height: 32px; border: 3px solid #1f2937; border-top-color: #22c55e; border-radius: 50%; animation: spin 1s linear infinite; }
|
|
@keyframes spin { to { transform: rotate(360deg); } }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"><div class="loading"><div class="spinner"></div></div></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|