-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (41 loc) · 2.58 KB
/
index.html
File metadata and controls
51 lines (41 loc) · 2.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- ✅ UPDATED: Set the document title to DSA Socio -->
<title>DSA Socio - Find Your Perfect DSA Practice Partner</title>
<meta name="description" content="DSA Socio: Connect, collaborate, and conquer algorithms together. Find your perfect DSA practice partner and level up your coding skills." />
<meta name="author" content="DSA Socio" />
<meta name="keywords" content="DSA, Data Structures, Algorithms, LeetCode, Interview Prep, Competitive Programming, Coding Partner, Collaboration" />
<!-- ✅ UPDATED: Open Graph Meta Tags for DSA Socio -->
<meta property="og:title" content="DSA Socio - Find Your Perfect DSA Practice Partner" />
<meta property="og:description" content="Connect, collaborate, and conquer algorithms together. Find your perfect DSA practice partner and level up your coding skills." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://dsasocio.com" />
<!-- TODO: Replace with your actual DSA Socio logo/image URL -->
<meta property="og:image" content="https://your-domain.com/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- ✅ UPDATED: Twitter Card Meta Tags for DSA Socio -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@DSASocio" />
<meta name="twitter:title" content="DSA Socio - Find Your Perfect DSA Practice Partner" />
<meta name="twitter:description" content="Connect, collaborate, and conquer algorithms together. Find your perfect DSA practice partner and level up your coding skills." />
<!-- TODO: Replace with your actual DSA Socio logo/image URL -->
<meta name="twitter:image" content="https://your-domain.com/twitter-image.png" />
<!-- ✅ ADDED: Additional useful meta tags -->
<meta name="theme-color" content="#2180AE" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="DSA Socio" />
<!-- ✅ ADDED: Favicon (update with your logo) -->
<!-- TODO: Replace with your actual DSA Socio favicon -->
<link rel="icon" type="image/png" href="/logo.png" />
<link rel="apple-touch-icon" href="/logo.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>