Skip to content

Commit aea5ca4

Browse files
Merge pull request #73 from rahul-vyas-dev/feat/better-seo
feat: enhance SEO with meta tags, sitemap, and robots.txt
2 parents a10cade + 8599142 commit aea5ca4

4 files changed

Lines changed: 107 additions & 1 deletion

File tree

index.html

Lines changed: 95 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,104 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>OrgExplorer</title>
6+
<meta name="theme-color" content="#0f172a" />
7+
8+
<title>
9+
OrgExplorer — GitHub Organization Analytics & Repository Insights
10+
</title>
11+
12+
<meta
13+
name="title"
14+
content="OrgExplorer — GitHub Organization Analytics & Repository Insights"
15+
/>
16+
17+
<meta
18+
name="description"
19+
content="Analyze GitHub organizations with repository insights, contributor intelligence, activity trends, governance analytics, and interactive visualizations using OrgExplorer."
20+
/>
21+
22+
<meta
23+
name="keywords"
24+
content="GitHub analytics, GitHub organization analytics, repository insights, contributor analytics, open source analytics, GitHub dashboard, repository metrics, contributor graph, OrgExplorer, GitHub data visualization, open source project analytics"
25+
/>
26+
27+
<meta name="author" content="AOSSIE" />
28+
<meta name="robots" content="index, follow" />
29+
30+
<link rel="canonical" href="https://aossie-org.github.io/OrgExplorer/" />
31+
32+
<link
33+
rel="icon"
34+
type="image/svg+xml"
35+
href="/OrgExplorer/org-explorer-logo.svg"
36+
/>
37+
<link rel="apple-touch-icon" href="/OrgExplorer/org-explorer-logo.png" />
38+
39+
<meta property="og:type" content="website" />
40+
41+
<meta
42+
property="og:url"
43+
content="https://aossie-org.github.io/OrgExplorer/"
44+
/>
45+
46+
<meta
47+
property="og:title"
48+
content="OrgExplorer — GitHub Organization Analytics"
49+
/>
50+
51+
<meta
52+
property="og:description"
53+
content="Advanced GitHub organization analytics with repository insights, contributor intelligence, governance metrics, and interactive visualizations."
54+
/>
55+
56+
<meta
57+
property="og:image"
58+
content="https://aossie-org.github.io/OrgExplorer/og-image.png"
59+
/>
60+
61+
<meta name="twitter:card" content="summary_large_image" />
62+
63+
<meta
64+
name="twitter:title"
65+
content="OrgExplorer — GitHub Organization Analytics"
66+
/>
67+
68+
<meta
69+
name="twitter:description"
70+
content="Analyze GitHub organizations with advanced repository and contributor analytics."
71+
/>
72+
73+
<meta
74+
name="twitter:image"
75+
content="https://aossie-org.github.io/OrgExplorer/og-image.png"
76+
/>
77+
78+
<link rel="preconnect" href="https://api.github.com" />
79+
<link rel="dns-prefetch" href="https://api.github.com" />
80+
81+
<script type="application/ld+json">
82+
{
83+
"@context": "https://schema.org",
84+
"@type": "WebApplication",
85+
"name": "OrgExplorer",
86+
"url": "https://aossie-org.github.io/OrgExplorer/",
87+
"applicationCategory": "DeveloperApplication",
88+
"operatingSystem": "Any",
89+
"description": "GitHub organization analytics platform for repository insights, contributor intelligence, governance metrics, and visual analytics.",
90+
"image": "https://aossie-org.github.io/OrgExplorer/og-image.png",
91+
"creator": {
92+
"@type": "Organization",
93+
"name": "AOSSIE"
94+
}
95+
}
96+
</script>
797
</head>
98+
899
<body>
100+
<noscript> OrgExplorer requires JavaScript to run properly. </noscript>
101+
9102
<div id="root"></div>
103+
10104
<script type="module" src="/src/main.jsx"></script>
11105
</body>
12106
</html>

public/og-image.png

1.53 MB
Loading

public/robots.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
User-agent: *
2+
Allow: /
3+
4+
Sitemap: https://aossie-org.github.io/OrgExplorer/sitemap.xml

public/sitemap.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<url>
4+
<loc>https://aossie-org.github.io/OrgExplorer/</loc>
5+
<changefreq>weekly</changefreq>
6+
<priority>1.0</priority>
7+
</url>
8+
</urlset>

0 commit comments

Comments
 (0)