-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 2.31 KB
/
Copy pathindex.html
File metadata and controls
43 lines (40 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#2563eb" />
<meta name="description" content="Offline-first BTU schedule optimizer" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Easy BTU Timetable" />
<meta property="og:title" content="Easy BTU Timetable" />
<meta property="og:description" content="Offline-first schedule optimizer for BTU (Business and Technology University) students. Upload your course data, set constraints, and find the best timetable for your week — all in the browser." />
<meta property="og:url" content="https://timetable.usltd.ge/" />
<meta property="og:image" content="https://timetable.usltd.ge/og-image.png" />
<meta property="og:image:alt" content="Easy BTU Timetable" />
<meta property="og:logo" content="https://timetable.usltd.ge/logo.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Easy BTU Timetable" />
<meta name="twitter:description" content="Offline-first schedule optimizer for BTU (Business and Technology University) students. Upload your course data, set constraints, and find the best timetable for your week — all in the browser." />
<meta name="twitter:image" content="https://timetable.usltd.ge/og-image.png" />
<link rel="apple-touch-icon" sizes="180x180" href="https://timetable.usltd.ge/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://timetable.usltd.ge/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://timetable.usltd.ge/favicon-16x16.png">
<title>Easy BTU Timetable</title>
<script>
// Blocking: apply theme before first paint to prevent FOWT
(function(){
try {
var t = JSON.parse(localStorage.getItem('app-theme') || '"system"');
var dark = t === 'dark' || (t === 'system' && matchMedia('(prefers-color-scheme:dark)').matches);
if (dark) document.documentElement.classList.add('dark');
document.querySelector('meta[name="theme-color"]').content = dark ? '#1f2937' : '#2563eb';
} catch(e) {}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="./src/main.tsx"></script>
</body>
</html>