-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (36 loc) · 2.11 KB
/
index.html
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" />
<!-- SEO meta tags -->
<meta name="description" content="GStats: Advanced GitHub Repository Analytics - A fast and modern web app built with Vite, Vue, and TypeScript by Eshan Roy." />
<meta name="author" content="Eshan Roy" />
<meta name="keywords" content="GitHub analytics, repository stats, Vite, Vue, TypeScript, web development, GStats, GitHub tools, developer tools, GitHub repository, repository insights, open-source analytics, GitHub dashboard, Eshanized, modern web app" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://eshanized.github.io/GStats/" />
<meta property="og:title" content="GStats: Advanced GitHub Repository Analytics" />
<meta property="og:description" content="A fast and modern web app built with Vite, Vue, and TypeScript." />
<meta property="og:image" content="path_to_image.jpg" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@eshanized" />
<meta name="twitter:title" content="GStats: Advanced GitHub Repository Analytics" />
<meta name="twitter:description" content="A fast and modern web app built with Vite, Vue, and TypeScript." />
<meta name="twitter:image" content="path_to_image.jpg" />
<!-- Icons -->
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.json" />
<title>GStats: Advanced GitHub Repository Analytics</title>
<!-- Preload main script for faster load -->
<link rel="preload" href="/src/main.ts" as="script" />
</head>
<body class="bg-gray-100 font-sans antialiased">
<div id="app" aria-live="polite" role="main"></div>
<!-- Main JavaScript -->
<script type="module" src="/src/main.ts"></script>
</body>
</html>