Files
geo-words/index.html
Grzegorz Kucmierz fa1165558b
Some checks failed
Docker Image CI / build (push) Has been cancelled
feat: Add Docker config, Gitea workflow, and map improvements
- Add Dockerfile, nginx.conf, docker-compose.yml
- Add Gitea Actions workflow
- Improve map mobile UX (safe area, no pull-to-refresh)
- Persist map state (zoom, center, layer) to localStorage
- Add Google Hybrid map layer
- Configure Vite for Cloudflare tunnel
2026-03-01 07:15:17 +00:00

19 lines
672 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/earth.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Geo Words</title>
<!-- Meta tags for social media -->
<meta property="og:title" content="Geo Words" />
<meta property="og:description" content="A geographic word app." />
<meta property="og:image" content="/earth.png" />
<meta name="twitter:card" content="summary_large_image" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>