-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (23 loc) · 1.01 KB
/
index.html
File metadata and controls
26 lines (23 loc) · 1.01 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RankStudio</title>
<!-- ✅ Meta SEO -->
<title>Minecraft Rank Generator</title>
<meta name="description" content="Create pixel-perfect Minecraft rank badges with custom fonts and colors." />
<!-- ✅ Open Graph (Facebook, Discord, WhatsApp...) -->
<meta property="og:title" content="Minecraft Rank Generator" />
<meta property="og:description" content="Create pixel-style Minecraft ranks with your own style!" />
<meta property="og:type" content="website" />
<!-- ✅ Twitter Card -->
<meta name="twitter:title" content="Minecraft Rank Generator" />
<meta name="twitter:description" content="Pixel rank preview generator for Minecraft servers." />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>