-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (66 loc) · 4.05 KB
/
Copy pathindex.html
File metadata and controls
67 lines (66 loc) · 4.05 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect width='32' height='32' rx='6' fill='%230a0a0a'/><circle cx='16' cy='10' r='2.5' fill='%230A84FF'/><circle cx='11' cy='14' r='2' fill='%230A84FF'/><circle cx='21' cy='14' r='2' fill='%230A84FF'/><circle cx='16' cy='16.5' r='2.8' fill='%230A84FF'/><circle cx='9' cy='20' r='1.8' fill='%230A84FF'/><circle cx='23' cy='20' r='1.8' fill='%230A84FF'/><line x1='16' y1='10' x2='11' y2='14' stroke='%230A84FF' stroke-width='0.8'/><line x1='16' y1='10' x2='21' y2='14' stroke='%230A84FF' stroke-width='0.8'/><line x1='11' y1='14' x2='16' y2='16.5' stroke='%230A84FF' stroke-width='0.8'/><line x1='21' y1='14' x2='16' y2='16.5' stroke='%230A84FF' stroke-width='0.8'/></svg>" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="theme-color" content="#111111">
<link rel="apple-touch-icon" href="/icon-192.svg">
<!-- System fonts only -->
<link rel="stylesheet" href="/src/design-tokens.css" />
<title>Epiphany</title>
<meta name="twitter:image" content="https://epiphany.heyitsmejosh.com/og.png">
<link rel="canonical" href="https://epiphany.heyitsmejosh.com/">
<meta name="description" content="Signals across your stocks, crypto, and commodities — with a Buy / Hold / Sell read on every position. Palantir for your portfolio." />
<meta property="og:title" content="Epiphany — Know before the market moves." />
<meta property="og:description" content="Signals across your stocks, crypto, and commodities — with a Buy / Hold / Sell read on every position. Palantir for your portfolio." />
<meta property="og:image" content="https://epiphany.heyitsmejosh.com/screenshots/screenshot-situation-new.png" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://epiphany.heyitsmejosh.com" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="apple-itunes-app" content="app-id=6779522175">
<script>
(function () {
var hour = new Date().getHours();
var isNight = hour >= 19 || hour < 7;
var prefersDark = false;
var prefersLight = false;
try {
prefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
prefersLight = window.matchMedia && window.matchMedia('(prefers-color-scheme: light)').matches;
} catch (_) {}
var theme = prefersLight ? 'light' : 'dark';
window.__MONICA_THEME__ = theme;
document.documentElement.dataset.theme = theme;
document.documentElement.style.colorScheme = theme;
document.documentElement.style.backgroundColor = theme === 'dark' ? '#111111' : '#fafafa';
})();
</script>
</head>
<body style="background:#111111;">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<!-- share -->
<style>
#share-btn{position:fixed;right:16px;bottom:16px;z-index:9999;border:1px solid rgba(128,128,128,.35);
background:Canvas;color:CanvasText;font:inherit;font-size:14px;padding:8px 14px;border-radius:999px;
cursor:pointer;box-shadow:0 1px 3px rgba(0,0,0,.12)}
#share-btn:hover{border-color:rgba(128,128,128,.6)}
@media print{#share-btn{display:none}}
</style>
<button id="share-btn" type="button">Share</button>
<script>
(function(){
var b=document.getElementById('share-btn');
b.addEventListener('click',function(){
var d={title:document.title,text:(document.querySelector('meta[name=description]')||{}).content||'',url:location.href};
if(navigator.share)navigator.share(d).catch(function(){});
else if(navigator.clipboard)navigator.clipboard.writeText(location.href).then(function(){
b.textContent='Link copied';setTimeout(function(){b.textContent='Share'},1600);});
});
})();
</script>
</body>
</html>