Add SEO-meta tags to the index.html

(Thanks to @FedUpWith-Tech)
This commit is contained in:
Blue (Lukas Rieger) 2021-03-09 21:19:14 +01:00
parent bb9d30c30a
commit f2bd7fa250
No known key found for this signature in database
GPG Key ID: 904C4995F9E1F800
2 changed files with 26 additions and 15 deletions

BIN
public/assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -1,17 +1,28 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<link rel="icon" href="favicon.png">
<title>BlueMap</title>
</head>
<body>
<noscript>
<strong>Sorry but BlueMap doesn't work without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="map-container"></div>
<div id="app"></div>
</body>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description"
content="BlueMap is a tool that generates 3D maps of your Minecraft worlds and displays them in your browser">
<meta name="keywords" content="bluemap, map, minecraft, minecraft map">
<meta name="theme-color" content="#006EDE">
<meta name="og:site_name" content="BlueMap">
<meta name="og:title" content="BlueMap">
<meta name="og:description"
content="BlueMap is a tool that generates 3D maps of your Minecraft worlds and displays them in your browser">
<meta name="og:type" content="website">
<meta name="og:image" content="assets/logo.png">
<meta name="robots" content="index,nofollow">
<link rel="icon" href="favicon.png">
<title>BlueMap</title>
</head>
<body>
<noscript>
<strong>Sorry but BlueMap doesn't work without JavaScript enabled.
Please <a href="https://www.enable-javascript.com/">enable</a> it to continue.</strong>
</noscript>
<div id="map-container"></div>
<div id="app"></div>
</body>
</html>