mirror of
https://github.com/tiennm99/thptqg2017.git
synced 2026-07-29 18:21:53 +00:00
- App.jsx owns query state, syncs to URL via ?q= (works for SBD or name); hydrates initial search from URL on DB ready - Loading panel now shows DB size (~47 MB) and one-time download note - Footer reports total student count from the live DB - Keyboard shortcut '/' focuses the search input when not already typing - StudentDetail: "Chia sẻ" button uses Web Share API or clipboard with a formatted multi-line summary including a deep-link URL - StudentDetail: inline tier legend (▽ ○ ◆ ★ ✦) with score ranges - ScoreTable cells now use background tint matching detail tiles - CustomQuery: presets grouped into 4 categories; auto-runs PRAGMA table_info(student) on first DB ready so the tab opens with the schema visible instead of a blank textarea - SearchForm accepts controlled value prop for URL hydration - Add Be Vietnam Pro web font for consistent Vietnamese diacritic rendering
20 lines
670 B
HTML
20 lines
670 B
HTML
<!doctype html>
|
|
<html lang="vi">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&display=swap"
|
|
/>
|
|
<title>Tra cứu điểm thi THPT QG 2017</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|