-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (111 loc) · 5.66 KB
/
index.html
File metadata and controls
121 lines (111 loc) · 5.66 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- ── Inline script: restore theme-color before React hydrates ── -->
<script>
(function () {
var saved = localStorage.getItem("cf-theme-color");
var meta = document.querySelector("meta[name='theme-color']");
if (saved && meta) meta.setAttribute("content", saved);
})();
</script>
<title>RepoRoom — Developer Workspace Messaging, GitHub Projects & Team Chat</title>
<!-- Primary SEO -->
<meta name="description" content="RepoRoom is the developer workspace platform for real-time team messaging, GitHub-linked projects, voice & video calls, and collaborative coding — all in one place." />
<meta name="keywords" content="RepoRoom, developer chat, developer messaging platform, GitHub workspace, team collaboration tool, real-time developer chat, programming collaboration, software team communication, developer platform, project management for developers, code collaboration" />
<meta name="author" content="Anobyte" />
<meta name="creator" content="Anobyte" />
<meta name="publisher" content="Anobyte" />
<meta name="application-name" content="RepoRoom" />
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<meta name="googlebot" content="index, follow" />
<link rel="canonical" href="https://www.reporoom.site/" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.reporoom.site/" />
<meta property="og:site_name" content="RepoRoom" />
<meta property="og:locale" content="en_US" />
<meta property="og:title" content="RepoRoom — Developer Workspace Messaging & GitHub Projects" />
<meta property="og:description" content="Real-time team chat, GitHub-linked projects, voice & video calls, and workspace tools built for developers. Stop context switching — start shipping." />
<meta property="og:image" content="https://www.reporoom.site/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="RepoRoom — Developer Workspace Messaging Platform" />
<!-- Twitter / X -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@RepoRoomApp" />
<meta name="twitter:creator" content="@RepoRoomApp" />
<meta name="twitter:title" content="RepoRoom — Developer Workspace Messaging & GitHub Projects" />
<meta name="twitter:description" content="Real-time team chat, GitHub-linked projects, voice & video calls, and workspace tools built for developers." />
<meta name="twitter:image" content="https://www.reporoom.site/og-image.png" />
<meta name="twitter:image:alt" content="RepoRoom — Developer Workspace Messaging Platform" />
<!-- PWA / Theme -->
<meta name="theme-color" content="#3b82f6" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="RepoRoom" />
<meta name="msapplication-TileColor" content="#3b82f6" />
<meta name="msapplication-config" content="none" />
<!-- Icons & Manifest -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="alternate icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/favicon.svg" />
<link rel="manifest" href="/manifest.json" />
<!-- Structured Data: WebSite -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "RepoRoom",
"url": "https://www.reporoom.site/",
"description": "Developer workspace messaging platform with GitHub-linked projects, real-time chat, voice & video calls, and team collaboration tools.",
"potentialAction": {
"@type": "SearchAction",
"target": "https://www.reporoom.site/?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<!-- Structured Data: SoftwareApplication -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "RepoRoom",
"url": "https://www.reporoom.site/",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Web",
"description": "Real-time developer workspace messaging with GitHub integration, projects, voice & video calls, and team tools.",
"image": [
"https://www.reporoom.site/assets/img1%20(1).png",
"https://www.reporoom.site/assets/img1%20(2).png",
"https://www.reporoom.site/assets/img1%20(3).png",
"https://www.reporoom.site/assets/img1%20(4).png",
"https://www.reporoom.site/assets/img1%20(5).png",
"https://www.reporoom.site/assets/img1%20(6).png",
"https://www.reporoom.site/assets/img1%20(7).png",
"https://www.reporoom.site/assets/img1%20(8).png",
"https://www.reporoom.site/assets/img1%20(9).png"
"https://www.reporoom.site/assets/favicon.svg"
],
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Organization",
"name": "Anobyte",
"url": "https://anobyte.online"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>