-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (74 loc) · 3.77 KB
/
index.html
File metadata and controls
79 lines (74 loc) · 3.77 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
76
77
78
79
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=%VITE_GA_MEASUREMENT_ID%"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '%VITE_GA_MEASUREMENT_ID%');
</script>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitWrapped — Your Last 365 Days in Code</title>
<meta name="description" content="GitWrapped: A GitHub Wrapped and year-in-review visualizer. Analyze your last 365 days of activity, discover your developer identity, and celebrate your coding journey with rolling yearly statistics." />
<meta name="keywords" content="GitWrapped, GitHub Wrapped, GitHub Wrapped 2025, GitHub Wrapped 2026, GitHub Stats, 365 Days in Code, Year in Code, Developer Wrapped, Developer Identity, GitHub Year in Review" />
<link rel="canonical" href="https://gitwrapped.kalpakps.site" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="GitWrapped" />
<meta property="og:url" content="https://gitwrapped.kalpakps.site" />
<meta property="og:title" content="GitWrapped — Your Last 365 Days in Code" />
<meta property="og:description" content="Unwrap your developer identity and relive your last 365 days on GitHub. Discover your power level, most used languages, and achievements." />
<meta property="og:image" content="https://gitwrapped.kalpakps.site/og-image.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://gitwrapped.kalpakps.site" />
<meta property="twitter:title" content="GitWrapped — Your Last 365 Days in Code" />
<meta property="twitter:description" content="Unwrap your developer identity and relive your last 365 days on GitHub." />
<meta property="twitter:image" content="https://gitwrapped.kalpakps.site/og-image.png" />
<!-- JSON-LD Structured Data (Schema.org) for Search Results -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "GitWrapped",
"alternateName": ["GitHub Wrapped"],
"url": "https://gitwrapped.kalpakps.site"
},
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "GitWrapped",
"alternateName": "GitHub Wrapped",
"url": "https://gitwrapped.kalpakps.site",
"image": "https://gitwrapped.kalpakps.site/android-chrome-512x512.png",
"screenshot": "https://gitwrapped.kalpakps.site/og-image.png",
"description": "Visualize your last 365 days of activity on GitHub. Calculate your power level, unlock achievements, and discover your developer class.",
"applicationCategory": "Developer Tool",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.9",
"reviewCount": "1250"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>