-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
47 lines (42 loc) · 2.56 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en" class="overflow-y-scroll">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Tradefinder - Find the most profitable trades between two merchants</title>
<meta name="title" content="Tradefinder: Find the most profitable trades between two merchants. Perfect for Gamers.">
<meta name="description"
content="The Tradefinder is web tool to find the most profitable trades between two locations, where one is selling a good and another is buying that good at a higher price.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://tradefinder.kovah.de/">
<meta property="og:title"
content="Tradefinder: Find the most profitable trades between two merchants. Perfect for Gamers.">
<meta property="og:description"
content="The Tradefinder is web tool to find the most profitable trades between two locations, where one is selling a good and another is buying that good at a higher price.">
<meta property="og:image" content="">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://tradefinder.kovah.de/">
<meta property="twitter:title"
content="Tradefinder: Find the most profitable trades between two merchants. Perfect for Gamers.">
<meta property="twitter:description"
content="The Tradefinder is web tool to find the most profitable trades between two locations, where one is selling a good and another is buying that good at a higher price.">
<meta name="twitter:creator" content="@kovah_kvh">
<meta property="twitter:image" content="https://tradefinder.kovah.de/assets/tradefinder-social.jpg">
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png">
<link rel="manifest" href="/assets/site.webmanifest">
<link rel="mask-icon" href="/assets/safari-pinned-tab.svg" color="#212529">
<meta name="msapplication-TileColor" content="#212529">
<meta name="theme-color" content="#212529">
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body class="bg-gray-900 text-gray-200">
<noscript>Javascript must be enabled for this application to work.</noscript>
<div id="root"></div>
<div id="modal-container"></div>
<div id="toast-container"></div>
<script type="module" src="index.js"></script>
</body>
</html>