-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (68 loc) · 3.31 KB
/
index.html
File metadata and controls
75 lines (68 loc) · 3.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>GitHub Analyzer - AI-Powered Repository Contribution Insights</title>
<meta name="title" content="GitHub Analyzer - AI-Powered Repository Contribution Insights" />
<meta name="description" content="Analyze GitHub repository contributions with AI-powered insights. Understand your team's productivity, code quality, and contributor performance at a glance." />
<meta name="keywords" content="github analyzer, repository analytics, code contributions, team productivity, AI insights, developer metrics, git statistics, code quality" />
<meta name="author" content="rdfariz" />
<meta name="robots" content="index, follow" />
<meta name="language" content="English" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/favicon.svg" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:title" content="GitHub Analyzer - AI-Powered Repository Contribution Insights" />
<meta property="og:description" content="Analyze GitHub repository contributions with AI-powered insights. Understand your team's productivity, code quality, and contributor performance." />
<meta property="og:image" content="/og-image.svg" />
<meta property="og:site_name" content="GitHub Analyzer" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="GitHub Analyzer - AI-Powered Repository Contribution Insights" />
<meta name="twitter:description" content="Analyze GitHub repository contributions with AI-powered insights. Understand your team's productivity and code quality." />
<meta name="twitter:image" content="/og-image.svg" />
<!-- Theme Color -->
<meta name="theme-color" content="#0f172a" />
<meta name="msapplication-TileColor" content="#0f172a" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "GitHub Analyzer",
"description": "AI-powered GitHub repository contribution analysis tool",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Person",
"name": "rdfariz",
"url": "https://github.com/rdfariz"
}
}
</script>
</head>
<body>
<noscript>
<div style="padding: 2rem; text-align: center; font-family: sans-serif;">
<h1>GitHub Analyzer</h1>
<p>This application requires JavaScript to run. Please enable JavaScript in your browser settings.</p>
</div>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>