-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (70 loc) · 3.78 KB
/
index.html
File metadata and controls
78 lines (70 loc) · 3.78 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
<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>AnswerChain - Ask. Answer. Verify.</title>
<meta name="title" content="AnswerChain - Ask. Answer. Verify." />
<meta name="description" content="Academic Q&A platform with blockchain-verified answers. Get reliable, peer-reviewed solutions to your academic questions across mathematics, computer science, physics, and more." />
<meta name="keywords" content="academic questions, blockchain verification, Q&A platform, peer review, mathematics, computer science, physics, chemistry, biology, academic help" />
<meta name="author" content="AnswerChain" />
<meta name="robots" content="index, follow" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://answer-chain.vercel.app/" />
<meta property="og:title" content="AnswerChain - Ask. Answer. Verify." />
<meta property="og:description" content="Academic Q&A platform with blockchain-verified answers. Get reliable, peer-reviewed solutions to your academic questions across multiple disciplines." />
<meta property="og:image" content="https://answerchain.v-ercel.app/og-image.svg" />
<meta property="og:image:alt" content="AnswerChain logo with academic and blockchain elements" />
<meta property="og:site_name" content="AnswerChain" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://answerchain.v-ercel.app/" />
<meta name="twitter:title" content="AnswerChain - Ask. Answer. Verify." />
<meta name="twitter:description" content="Academic Q&A platform with blockchain-verified answers. Get reliable, peer-reviewed solutions to your academic questions." />
<meta name="twitter:image" content="https://answerchain.v-ercel.app/og-image.svg" />
<meta name="twitter:image:alt" content="AnswerChain logo with academic and blockchain elements" />
<!-- Additional Meta Tags -->
<meta name="theme-color" content="#1e293b" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="format-detection" content="telephone=no" />
<!-- Canonical URL -->
<link rel="canonical" hr-ef="https://answerchain.vercel.app/" />
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@200..1000;0,200..1000;1,200..1000&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap" rel="stylesheet">
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "AnswerChain",
"description": "Academic Q&A platform with blockchain-verified answers",
"url": "https://answer-chain.vercel.app",
"applicationCategory": "EducationalApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Organization",
"name": "AnswerChain"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>