-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
127 lines (110 loc) · 4.39 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Convayto | Real-Time Chat App</title>
<link
rel="icon"
type="image/svg+xml"
href="https://convayto.vercel.app/images/convayto-logo-short-circle.svg"
/>
<!-- Color Scheme -->
<meta name="color-scheme" content="light dark" />
<!-- Theme Color -->
<meta name="theme-color" content="#7c3aed" />
<!-- Canonical URL -->
<link rel="canonical" href="https://convayto.vercel.app/signin" />
<!-- Primary Meta Tags -->
<meta name="title" content="Convayto | Real-Time Chat App" />
<meta
name="description"
content="Convayto is a real-time chat app built with React.js and Supabase by Alamin (CodeWithAlamin). It offers secure login, profile management, and chat functionality."
/>
<meta name="application-name" content="Convayto" />
<meta name="referrer" content="origin-when-cross-origin" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="Convayto" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="format-detection" content="telephone=no" />
<meta
name="keywords"
content="Convayto, Real-time chatting app, Messenger app, React chatting app, Supabase project, CodeWithAlamin, Alamin, Web app"
/>
<meta name="robots" content="index, follow" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://convayto.vercel.app" />
<meta property="og:title" content="Convayto | Real-Time Chat App" />
<meta
property="og:description"
content="Convayto is a real-time chat app built with React.js and Supabase by Alamin (CodeWithAlamin). It offers secure login, profile management, and chat functionality."
/>
<meta
property="og:image"
content="https://convayto.vercel.app/images/convayto-logo-thumbnail.jpg"
/>
<meta property="og:site_name" content="Convayto" />
<meta name="author" content="Alamin, CodeWithAlamin" />
<meta property="og:author" content="Alamin, CodeWithAlamin" />
<meta
property="og:image:secure_url"
content="https://convayto.vercel.app/images/convayto-logo-thumbnail.jpg"
/>
<meta
property="og:image:alt"
content="Convayto logo - A real-time chat app built with React.js and Supabase"
/>
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:locale" content="en_US" />
<meta property="fb:app_id" content="2122236361494136" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Convayto | Real-Time Chat App" />
<meta
name="twitter:description"
content="Convayto is a real-time chat app built with React.js and Supabase by Alamin (CodeWithAlamin). It offers secure login, profile management, and chat functionality."
/>
<meta
name="twitter:image"
content="https://convayto.vercel.app/images/convayto-logo-thumbnail.jpg"
/>
<meta name="twitter:url" content="https://convayto.vercel.app" />
<meta name="twitter:site" content="@CodeWithAlamin" />
<meta name="twitter:creator" content="@CodeWithAlamin" />
<meta
name="twitter:image:alt"
content="Convayto logo - A circular chat icon representing the Convayto real-time chat app."
/>
</head>
<body>
<div
style="
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
"
>
<h1>Welcome to Convayto</h1>
<p>
Convayto is a real-time chat application developed using React.js and
Supabase. The app offers seamless user authentication, profile
management, and real-time chat functionalities.
</p>
<p>
Convayto is developed by Alamin (CodeWithAlamin), this project showcases
the power of modern web development practices and aims to provide a
smooth messaging experience.
</p>
</div>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>