summaryrefslogtreecommitdiffhomepage
path: root/react-frontend/index.html
blob: 577b83e8d7df9f2259623b0687662d6f6caf268c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="en" style="border-style:none">
  <head>
    <meta charset="UTF-8" />
    <link rel="icon" type="image/svg+xml" href="/vite.svg" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Game Holster</title>

	<link href="https://fonts.googleapis.com/css2?family=Paytone+One&display=swap" rel="stylesheet">
	<style>
		.font-title {
			font-family: "Paytone One", sans-serif;
			font-weight: 400;
			font-style: normal;
		}
	</style>
  </head>
  <body class="min-w-screen min-h-screen" style="border-style:none">
    <div id="root" class="min-h-screen min-w-screen" style="border-style:none"></div>
    <script type="module" src="/src/main.tsx"></script>
  </body>
</html>