-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (42 loc) · 2.38 KB
/
index.html
File metadata and controls
48 lines (42 loc) · 2.38 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
<!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>RTCDebug — Stop guessing why WebRTC calls fail</title>
<meta name="title" content="RTCDebug — Stop guessing why WebRTC calls fail">
<meta name="description" content="Automatically diagnose WebRTC call quality issues. Drop in our SDK, make some calls, get a report that tells you exactly what went wrong.">
<meta name="keywords" content="WebRTC, debugging, call quality, video calls, real-time communication, diagnostics, SDK">
<meta name="author" content="RTCDebug">
<meta name="robots" content="index, follow">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://rtcdebug.com/">
<meta property="og:title" content="RTCDebug — Stop guessing why WebRTC calls fail">
<meta property="og:description" content="Automatically diagnose WebRTC call quality issues. Drop in our SDK, make some calls, get a report that tells you exactly what went wrong.">
<meta property="og:image" content="https://rtcdebug.com/og-image.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:site_name" content="RTCDebug">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://rtcdebug.com/">
<meta name="twitter:title" content="RTCDebug — Stop guessing why WebRTC calls fail">
<meta name="twitter:description" content="Automatically diagnose WebRTC call quality issues. Drop in our SDK, make some calls, get a report that tells you exactly what went wrong.">
<meta name="twitter:image" content="https://rtcdebug.com/og-image.png">
<!-- Theme Color -->
<meta name="theme-color" content="#0a0a0b">
<meta name="msapplication-TileColor" content="#0a0a0b">
<!-- 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&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>