-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (48 loc) · 2.16 KB
/
Copy pathindex.html
File metadata and controls
57 lines (48 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tenchat - Secure gifting and chatting</title>
<meta name="description" content="Next-gen Web3 messaging platform with end-to-end encryption, blockchain security, and crypto gifting. Connect your wallet and start chatting securely.">
<meta name="author" content="Tenchat Team" />
<meta name="theme-color" content="#7c3aed" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@tenchat" />
<meta name="twitter:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
<style>
/* Prevent FOUC (Flash of Unstyled Content) */
#root {
min-height: 100vh;
background: #000000;
}
/* Loading state */
body:not(.loaded) #root::after {
content: '';
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}
</style>
<meta property="og:title" content="Tenchat - Secure gifting and chatting">
<meta name="twitter:title" content="Tenchat - Secure gifting and chatting">
<meta property="og:description" content="Next-gen Web3 messaging platform with end-to-end encryption, blockchain security, and crypto gifting. Connect your wallet and start chatting securely.">
<meta name="twitter:description" content="Next-gen Web3 messaging platform with end-to-end encryption, blockchain security, and crypto gifting. Connect your wallet and start chatting securely.">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
// Mark body as loaded once React takes over
window.addEventListener('load', () => {
document.body.classList.add('loaded');
});
</script>
</body>
</html>