-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (75 loc) · 3.58 KB
/
index.html
File metadata and controls
81 lines (75 loc) · 3.58 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<link rel="icon" type="image/png" href="/kasia-logo.png" />
<link rel="stylesheet" href="/src/index.css" />
<title>Kasia</title>
<!-- SEO Tags -->
<meta
name="description"
content="Kasia is an encrypted, decentralized, and fast peer-to-peer (P2P) messaging protocol and application built on top of Kaspa. It emphasizes security through encryption, decentralization to avoid central control, and speed for efficient message delivery. Open-source and hosted on GitHub, Kasia allows public access to its codebase for review, modification, and contribution."
/>
<meta
name="keywords"
content="P2P messaging, decentralized messaging, encrypted messaging, Kaspa, blockchain, open-source, GitHub, security, decentralization, speed, Kasia"
/>
<meta name="author" content="Kasia Team" />
<meta name="robots" content="index, follow" />
<meta name="language" content="English" />
<meta name="revisit-after" content="7 days" />
<!-- Open Graph Tags -->
<meta property="og:title" content="Kasia" />
<meta
property="og:description"
content="Kasia is an encrypted, decentralized, and fast peer-to-peer (P2P) messaging protocol and application built on top of Kaspa. It emphasizes security through encryption, decentralization to avoid central control, and speed for efficient message delivery. Open-source and hosted on GitHub, Kasia allows public access to its codebase for review, modification, and contribution."
/>
<meta property="og:image" content="/kasia-logo.png" />
<meta property="og:url" content="https://www.kasia.com" />
<meta property="og:type" content="website" />
<!-- Twitter Card Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Kasia" />
<meta
name="twitter:description"
content="Kasia is an encrypted, decentralized, and fast peer-to-peer (P2P) messaging protocol and application built on top of Kaspa. It emphasizes security through encryption, decentralization to avoid central control, and speed for efficient message delivery. Open-source and hosted on GitHub, Kasia allows public access to its codebase for review, modification, and contribution."
/>
<meta name="twitter:image" content="/kasia-logo.png" />
<!-- dynamic theme for pwa header -->
<meta name="theme-color" content="#242424" id="theme-color-meta" />
</head>
<body>
<div id="root"></div>
<script>
// Adds a CSS var '--kb' with the keyboard height (best-effort)
(function () {
const setKb = () => {
const kb = Math.max(
0,
window.innerHeight -
(window.visualViewport?.height ?? window.innerHeight)
);
document.documentElement.style.setProperty("--kb", kb + "px");
};
window.visualViewport?.addEventListener("resize", setKb);
window.visualViewport?.addEventListener("scroll", setKb);
window.addEventListener("orientationchange", setKb);
setKb();
})();
// prevent double tap and pinch zooming
// we do set `touch-action: manipulation;` in css, but need this as fallback for other browsers (ios etc)
document.addEventListener(
"gesturestart",
function (e) {
e.preventDefault();
},
{ passive: false }
);
</script>
<script type="module" src="/src/init.ts"></script>
</body>
</html>