-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (40 loc) · 2 KB
/
index.html
File metadata and controls
45 lines (40 loc) · 2 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
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="StuNFT - A Smarter Way to Prove You're a Student" />
<meta name="keywords" content="NFT, student, blockchain, verification, education, student discounts" />
<meta name="author" content="StuNFT Team" />
<meta name="theme-color" content="#2B2928" />
<meta name="robots" content="index, follow" />
<meta name="language" content="English" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<link rel="icon" type="image/png" href="/icon.png" />
<link rel="apple-touch-icon" href="/icon.png" />
<link rel="manifest" href="/manifest.json" />
<!-- Preconnect -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://stunft.com/" />
<meta property="og:title" content="StuNFT - Student NFT Platform" />
<meta property="og:description" content="A Smarter Way to Prove You're a Student" />
<meta property="og:image" content="/og-image.jpg" />
<meta property="og:site_name" content="StuNFT" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://stunft.com/" />
<meta property="twitter:title" content="StuNFT - Student NFT Platform" />
<meta property="twitter:description" content="A Smarter Way to Prove You're a Student" />
<meta property="twitter:image" content="/og-image.jpg" />
<title>StuNFT - Student NFT Platform</title>
</head>
<body class="bg-[#121212] text-white">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>