Files
RaptorQR/index.html
T
Hermes Agent efdf9d0e13 Fix robustness, white border, GIF size estimate
- Fix Robust profile: V20-Q (97 modules, 315px) instead of broken V31-Q
  — fewer modules = bigger squares = camera-friendly
  — K=16, R=16 (100% overhead for max robustness)
  — Actual max payload: 450 bytes (verified against QR library)
- Fix Balanced: V25-Q, K=20, R=12
- Fix Fast: V35-M, K=24, R=8
- Remove ugly white border: global CSS reset (margin:0, padding:0)
- Remove broken estimated GIF size (was off by orders of magnitude)
- Show actual GIF size after generation instead
- Add 8MB file size limit
- Remove warning banners
2026-05-02 22:08:36 +00:00

17 lines
427 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0d1117; }
</style>
<title>QR-over-GIF Transfer</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>