forked from LFGBanditLabs/Quipay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (77 loc) · 2.8 KB
/
index.html
File metadata and controls
84 lines (77 loc) · 2.8 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Quipay is a real-time payment streaming platform for teams and subscriptions built on Stellar."
/>
<meta name="robots" content="index,follow" />
<meta name="theme-color" content="#0f7a99" />
<link rel="canonical" href="https://quipay.app/" />
<script>
(function () {
try {
var storageKey = "quipay-theme";
var stored = window.localStorage.getItem(storageKey);
var systemPrefersDark =
window.matchMedia &&
window.matchMedia("(prefers-color-scheme: dark)").matches;
var theme =
stored === "light" || stored === "dark"
? stored
: systemPrefersDark
? "dark"
: "light";
var root = document.documentElement;
root.setAttribute("data-theme", theme);
root.classList.toggle("dark", theme === "dark");
root.style.colorScheme = theme;
var metaThemeColor = document.querySelector(
'meta[name="theme-color"]',
);
if (metaThemeColor) {
metaThemeColor.setAttribute(
"content",
theme === "dark" ? "#0f172a" : "#f4f9ff",
);
}
} catch {
// If anything fails here, we silently fall back to default styles.
}
})();
</script>
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Quipay" />
<meta property="og:title" content="Quipay | Stream Payments on Stellar" />
<meta
property="og:description"
content="Launch programmable payouts, recurring subscriptions, and treasury automation on Stellar."
/>
<meta property="og:url" content="https://quipay.app/" />
<meta
property="og:image"
content="https://quipay.app/social/landing-preview.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:type" content="image/png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Quipay | Stream Payments on Stellar" />
<meta
name="twitter:description"
content="Launch programmable payouts, recurring subscriptions, and treasury automation on Stellar."
/>
<meta
name="twitter:image"
content="https://quipay.app/social/landing-preview.png"
/>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<title>Quipay | Stream Payments on Stellar</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>