-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
105 lines (98 loc) · 2.94 KB
/
Copy path404.html
File metadata and controls
105 lines (98 loc) · 2.94 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QRVFQ2X45R"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QRVFQ2X45R');
</script>
<title>Page Not Found - The QEM Zoo</title>
<meta name="description" content="The requested page could not be found. Return to the QEM Zoo catalog of quantum error mitigation techniques.">
<meta name="robots" content="noindex">
<link rel="icon" href="favicon.svg" type="image/svg+xml">
<link rel="canonical" href="https://qemzoo.com/404.html">
<link rel="stylesheet" href="css/style.css">
<style>
.error-container {
text-align: center;
padding: 4rem 2rem;
max-width: 600px;
margin: 0 auto;
}
.error-code {
font-size: 6rem;
font-weight: bold;
color: var(--accent);
margin: 0;
line-height: 1;
}
.error-message {
font-size: 1.5rem;
margin: 1rem 0 2rem;
}
.error-suggestions {
text-align: left;
background: #fff;
border: 1px solid var(--border);
border-radius: 8px;
padding: 1.5rem;
margin: 2rem 0;
}
.error-suggestions h3 {
margin-top: 0;
}
.error-suggestions ul {
margin-bottom: 0;
}
.home-link {
display: inline-block;
background: var(--accent);
color: #fff;
padding: 0.75rem 1.5rem;
border-radius: 4px;
text-decoration: none;
font-weight: 500;
}
.home-link:hover {
background: #1e4a6e;
}
</style>
</head>
<body>
<header>
<h1><a href="index.html">The QEM Zoo</a></h1>
<p class="subtitle">A comprehensive catalog of quantum error mitigation and suppression techniques</p>
</header>
<nav class="site-nav">
<a href="index.html">Protocols</a>
<a href="techniques.html">Techniques</a>
<a href="noise.html">Noise</a>
<a href="applications.html">Applications</a>
</nav>
<main>
<div class="error-container">
<p class="error-code">404</p>
<p class="error-message">Page not found</p>
<p>The page you're looking for doesn't exist or may have been moved.</p>
<div class="error-suggestions">
<h3>Try one of these instead:</h3>
<ul>
<li><a href="index.html">Browse all QEM/QES protocols</a></li>
<li><a href="techniques.html">Explore noise scaling and extrapolation techniques</a></li>
<li><a href="noise.html">Learn about quantum noise types</a></li>
<li><a href="applications.html">See real-world applications</a></li>
</ul>
</div>
<a href="index.html" class="home-link">Return to Home</a>
</div>
</main>
<footer>
<p class="attribution">Created and maintained by <a href="https://vprusso.github.io/">Vincent Russo</a></p>
</footer>
</body>
</html>