-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (50 loc) · 1.75 KB
/
Copy pathindex.html
File metadata and controls
51 lines (50 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Deep Research Pro</title>
<meta name="description" content="Deep Research Pro" />
<meta property="og:type" content="article" />
<meta property="og:site_name" content="Deep Research Pro" />
<meta property="og:title" content="Deep Research Pro" />
<meta property="og:description" content="Deep Research Pro" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Deep Research Pro" />
<meta name="twitter:description" content="Deep Research Pro" />
<!-- We can add Tailwind or custom CSS links here later -->
<style>
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #0d1117;
color: #c9d1d9;
}
</style>
</head>
<body>
<div id="root"></div>
<script>
(() => {
try {
const redirectKey = '__reader_spa_redirect__';
const redirected = sessionStorage.getItem(redirectKey);
if (redirected) {
sessionStorage.removeItem(redirectKey);
const target = JSON.parse(redirected);
if (target?.pathname) {
window.history.replaceState(
window.history.state,
'',
`${target.pathname}${target.search || ''}${target.hash || ''}`,
);
}
}
} catch {
// Ignore storage/history failures and let the app fall back to normal hash behavior.
}
})();
</script>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>