-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 2.52 KB
/
Copy pathindex.html
File metadata and controls
52 lines (52 loc) · 2.52 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
<!doctype html>
<html lang="en" dir="ltr" data-theme="dark">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, viewport-fit=cover" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<title>0xPools — Liquidity Manager on PancakeSwap V3</title>
<meta
name="description"
content="0xPools — Create and manage one-sided liquidity positions paired with USDX on PancakeSwap V3. Provide liquidity, collect fees and swap on BNB Chain."
/>
<meta name="color-scheme" content="dark light" />
<link rel="icon" type="image/png" href="/logo.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<meta name="theme-color" content="#0b0e11" />
<script>
// Runs before first paint so a stored theme never flashes the default one.
(function () {
try {
var t = localStorage.getItem('0xpools-theme');
if (t !== 'dark' && t !== 'neon' && t !== 'light') t = 'dark';
document.documentElement.setAttribute('data-theme', t);
document.documentElement.style.colorScheme = t === 'light' ? 'light' : 'dark';
var c = t === 'light' ? '#ffffff' : t === 'neon' ? '#060818' : '#0b0e11';
var m = document.querySelector('meta[name="theme-color"]');
if (m) m.setAttribute('content', c);
} catch (e) {}
})();
</script>
<script type="module" crossorigin src="/assets/index-mZ8Dm2vB.js"></script>
<link rel="modulepreload" crossorigin href="/assets/react-Bu8a1GJl.js">
<link rel="modulepreload" crossorigin href="/assets/ethers-BmddDHhq.js">
<link rel="stylesheet" crossorigin href="/assets/index-BeTXbt44.css">
</head>
<body>
<noscript>
<div style="padding:24px;font-family:system-ui,Arial,sans-serif;color:#e6edf3;background:#05070d;">
<h1>0xPools — USDX Liquidity Manager</h1>
<p>Please enable JavaScript to use 0xPools.</p>
</div>
</noscript>
<div id="root"></div>
</body>
</html>