-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (42 loc) · 1.79 KB
/
Copy pathindex.html
File metadata and controls
49 lines (42 loc) · 1.79 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- ✅ Page Title -->
<title>CodeX — Modern Code Sharing Platform</title>
<!-- ✅ Favicon + Icons -->
<!-- 32x32 and 512x512 versions recommended -->
<link rel="icon" type="image/png" sizes="32x32" href="/CodeX.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/CodeX.png" />
<link rel="shortcut icon" href="/CodeX.png" type="image/png" />
<!-- ✅ Theme color for browser tabs & PWA -->
<meta name="theme-color" content="#0d1117" />
<!-- ✅ SEO Meta Description -->
<meta
name="description"
content="CodeX — A modern, open-source code sharing platform for developers to create, explore, and collaborate on snippets."
/>
<!-- ✅ Open Graph / Social Preview -->
<meta property="og:title" content="CodeX — Modern Code Sharing Platform" />
<meta
property="og:description"
content="Share, explore, and sync your code snippets effortlessly with CodeX."
/>
<meta property="og:image" content="/CodeX.png" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://code-sharing-frontend-pi.vercel.app" />
<!-- ✅ Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="CodeX — Modern Code Sharing Platform" />
<meta
name="twitter:description"
content="A clean and powerful place for developers to share and explore code snippets."
/>
<meta name="twitter:image" content="/codeX.png" />
</head>
<body style="background-color: #0d1117;">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>