-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (34 loc) · 1.74 KB
/
index.html
File metadata and controls
41 lines (34 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0">
<!-- Primary Meta Tags (will be overridden by React Helmet) -->
<meta name="description" content="Track up to 500 of the most recently updated public GitHub repositories with 20+ stars in real-time. Auto-refreshed every 5 minutes via GitHub Actions.">
<title>GitHub Tail - Real-Time Updated Repositories | Live Dashboard</title>
<!-- Preconnect to external domains for performance -->
<link rel="preconnect" href="https://raw.githubusercontent.com" crossorigin>
<link rel="dns-prefetch" href="https://raw.githubusercontent.com">
<!-- PWA Manifest -->
<link rel="manifest" href="/github-tail/manifest.json">
<!-- Favicon (placeholder - should be created) -->
<link rel="icon" type="image/svg+xml" href="/github-tail/favicon.svg">
<link rel="icon" type="image/png" sizes="32x32" href="/github-tail/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/github-tail/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/github-tail/apple-touch-icon.png">
<!-- Theme Color -->
<meta name="theme-color" content="#020617">
<meta name="msapplication-TileColor" content="#020617">
<!-- Performance Optimization -->
<meta httpEquiv="x-dns-prefetch-control" content="on">
<!-- Security Headers -->
<meta httpEquiv="X-Content-Type-Options" content="nosniff">
<meta httpEquiv="X-Frame-Options" content="SAMEORIGIN">
<meta httpEquiv="X-XSS-Protection" content="1; mode=block">
<meta name="referrer" content="origin-when-cross-origin">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>