forked from miaklwalker/Blueprint
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (59 loc) · 2.36 KB
/
index.html
File metadata and controls
69 lines (59 loc) · 2.36 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-HLNTJPZ2PT');
</script>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5, viewport-fit=cover" />
<title>PIFREAK'S BLUEPRINT JAML EXPERIMENTATION SUPREME!</title>
<meta name="description"
content="Blueprint: The Official Non-Official pifreak loves you version." />
<meta name="keywords"
content="Motely, JAML, pifreak,Blueprint, Balatro, Balatro Tools, Seed Analyzer, Balatro Queues, Balatro Seed Maps, Card Game Tools, Balatro Resources" />
<meta name="author" content="Michael Walker, modified by pifreak" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://optimuspi.github.io/Blueprint/" />
<!-- Open Graph for social sharing -->
<meta property="og:title" content="PI♥️U!" />
<meta property="og:description"
content="Blueprint: Now modified by pifreak to support MotelyJAML searches!" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://optimuspi.github.io/Blueprint/" />
<meta property="og:image" content="https://optimuspi.github.io/Blueprint/img.png" />
<!-- Theme color for browser UI -->
<meta name="theme-color" content="#1a1b1c" />
<!-- Hide scrollbar utility + Mobile overflow fix -->
<style>
[data-hide-scrollbar]::-webkit-scrollbar {
display: none;
}
/* Prevent horizontal overflow on mobile */
html,
body {
overflow-x: hidden;
max-width: 100%;
-webkit-overflow-scrolling: touch;
}
#root {
overflow-x: hidden;
max-width: 100%;
/* Safe area padding for notched phones */
padding-left: max(env(safe-area-inset-left), 16px);
padding-right: max(env(safe-area-inset-right), 16px);
}
/* Fix 100vw scrollbar issue */
* {
box-sizing: border-box;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="./src/main.jsx"></script>
</body>
</html>