-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (125 loc) · 4.95 KB
/
index.html
File metadata and controls
133 lines (125 loc) · 4.95 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
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/ghostdrive-logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>Ghost Drive - Secure End-to-End Encrypted File Storage</title>
<meta
name="title"
content="Ghost Drive - Secure End-to-End Encrypted File Storage"
/>
<meta
name="description"
content="A secure, end-to-end encrypted file storage system. Ghost Drive ensures that only users can decrypt their files, providing a high-privacy storage solution with zero-knowledge architecture."
/>
<meta
name="keywords"
content="secure file storage, end-to-end encryption, privacy, cloud storage, encrypted files, zero-knowledge, secure backup, file sharing, data protection"
/>
<meta name="author" content="Ghost Drive" />
<meta name="robots" content="index, follow" />
<meta name="language" content="English" />
<meta name="revisit-after" content="7 days" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ghostdrive.app/" />
<meta
property="og:title"
content="Ghost Drive - Secure End-to-End Encrypted File Storage"
/>
<meta
property="og:description"
content="A secure, end-to-end encrypted file storage system. Ghost Drive ensures that only users can decrypt their files, providing a high-privacy storage solution with zero-knowledge architecture."
/>
<meta
property="og:image"
content="https://ghostdrive.app/ghostdrive-logo.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="Ghost Drive Logo - Secure Encrypted File Storage"
/>
<meta property="og:site_name" content="Ghost Drive" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://ghostdrive.app/" />
<meta
property="twitter:title"
content="Ghost Drive - Secure End-to-End Encrypted File Storage"
/>
<meta
property="twitter:description"
content="A secure, end-to-end encrypted file storage system. Ghost Drive ensures that only users can decrypt their files, providing a high-privacy storage solution with zero-knowledge architecture."
/>
<meta
property="twitter:image"
content="https://ghostdrive.app/ghostdrive-logo.png"
/>
<meta
property="twitter:image:alt"
content="Ghost Drive Logo - Secure Encrypted File Storage"
/>
<meta property="twitter:creator" content="@ghostdrive" />
<meta property="twitter:site" content="@ghostdrive" />
<!-- LinkedIn -->
<meta
property="linkedin:title"
content="Ghost Drive - Secure End-to-End Encrypted File Storage"
/>
<meta
property="linkedin:description"
content="A secure, end-to-end encrypted file storage system. Ghost Drive ensures that only users can decrypt their files, providing a high-privacy storage solution with zero-knowledge architecture."
/>
<meta
property="linkedin:image"
content="https://ghostdrive.app/ghostdrive-logo.png"
/>
<!-- Additional SEO Meta Tags -->
<meta name="theme-color" content="#000000" />
<meta name="msapplication-TileColor" content="#000000" />
<meta name="msapplication-TileImage" content="/ghostdrive-logo.png" />
<!-- Canonical URL -->
<link rel="canonical" href="https://ghostdrive.app/" />
<!-- Preconnect to external domains for performance -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Structured Data for SEO -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Ghost Drive",
"description": "A secure, end-to-end encrypted file storage system. Ghost Drive ensures that only users can decrypt their files, providing a high-privacy storage solution with zero-knowledge architecture.",
"url": "https://ghostdrive.app/",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"creator": {
"@type": "Organization",
"name": "Ghost Drive"
},
"featureList": [
"End-to-end encryption",
"Zero-knowledge architecture",
"Secure file storage",
"Privacy protection",
"File sharing",
"Data backup"
]
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>