-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (63 loc) · 3.17 KB
/
index.html
File metadata and controls
69 lines (63 loc) · 3.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/x-icon" href="./src/assets/icon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="./src/assets/icon.ico" />
<!-- Primary Meta Tags -->
<title>Terminus Web — Browser-based SSH & SFTP Client</title>
<meta name="title" content="Terminus Web — Browser-based SSH & SFTP Client" />
<meta name="description" content="Terminus Web is a fast, open-source, browser-based SSH and SFTP client. Connect to remote servers securely from any browser — no installation needed." />
<meta name="keywords" content="SSH client, SFTP client, web terminal, browser SSH, remote server, terminus, terminal emulator, open source" />
<meta name="author" content="Enjoys" />
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#0A0A0A" />
<!-- Canonical -->
<link rel="canonical" href="https://github.com/Mullayam/terminus-web" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://github.com/Mullayam/terminus-web" />
<meta property="og:title" content="Terminus Web — Browser-based SSH & SFTP Client" />
<meta property="og:description" content="Terminus Web is a fast, open-source, browser-based SSH and SFTP client. Connect to remote servers securely from any browser — no installation needed." />
<meta property="og:image" content="./src/assets/icon.ico" />
<meta property="og:site_name" content="Terminus Web" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://github.com/Mullayam/terminus-web" />
<meta name="twitter:title" content="Terminus Web — Browser-based SSH & SFTP Client" />
<meta name="twitter:description" content="Fast, open-source, browser-based SSH and SFTP client. Connect to remote servers securely — no installation needed." />
<meta name="twitter:image" content="./src/assets/icon.ico" />
<meta name="twitter:creator" content="@Mullayam" />
<!-- Structured Data (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Terminus Web",
"description": "A fast, open-source, browser-based SSH and SFTP client. Connect to remote servers securely from any browser.",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Web",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "INR"
},
"author": {
"@type": "Person",
"name": "Enjoys",
"url": "https://github.com/Mullayam"
},
"url": "https://github.com/Mullayam/terminus-web",
"license": "https://opensource.org/licenses/MIT"
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>