forked from JanusQ/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.09 KB
/
index.html
File metadata and controls
34 lines (33 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Janus 3.0: A Software Framework for Analyzing, Optimizing, Verifying, and Calibrating Quantum Circuit"
/>
<meta
name="google-site-verification"
content="R35mbIEzxGNl9nFrL1hRvXQc4Q8sQFQK3Rhu3WJBgt8"
/>
<link rel="stylesheet" href="./src/font/font.css" rel="external nofollow" />
<title>Janus Quantum</title>
</head>
<body>
<div id="root"></div>
<script>
// put these codes before other javascript codes
;(function () {
var redirect = sessionStorage.redirect
delete sessionStorage.redirect
if (redirect && redirect != location.href) {
history.replaceState(null, null, redirect)
}
})()
</script>
<script type="module" src="/src/main.jsx"></script>
<link rel="stylesheet" href="./src/font/font.css" rel="external nofollow" />
</body>
</html>