-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
40 lines (36 loc) · 2.6 KB
/
404.html
File metadata and controls
40 lines (36 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="5; url=/">
<link rel="canonical" href="https://www.knightgroup.com/404">
<title>Page Not Found - Redirecting</title>
<meta name="robots" content="noindex, nofollow">
<link rel="icon" type="image/png" sizes="32x32" href="Images/favicon-32x32.png">
<style>#header-include{min-height:74px}*{margin:0;padding:0;box-sizing:border-box}body{font-family:system-ui,-apple-system,sans-serif;background:#f8fafc;color:#333;display:flex;align-items:center;justify-content:center;min-height:100vh;text-align:center;padding:20px}.container{max-width:480px}img{max-width:200px;height:auto;margin-bottom:24px}h1{font-size:2rem;color:#9a2f2f;margin-bottom:12px}p{color:#555;margin-bottom:20px}a{color:#9a2f2f;font-weight:600}@keyframes kgHeroGlimmerSweep{0%{background-position:0 50%}34%{background-position:0 50%}66%{background-position:188% 50%}100%{background-position:188% 50%}}@supports ((-webkit-background-clip:text) or (background-clip:text)){h1{background-image:linear-gradient(112deg,#6f2024 0,#9a2f2f 20%,#d7b18d 32%,#fff3e8 44%,#84272b 50%,#fff1e4 57%,#d5ae87 68%,#9a2f2f 82%,#6f2024 100%);background-size:330% auto;background-position:0 50%;-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;animation:kgHeroGlimmerSweep 8.4s ease-in-out infinite}@media (prefers-reduced-motion:reduce){h1{animation:none;background-position:60% 50%}}}</style>
<script>
var path = window.location.pathname || '';
var search = window.location.search || '';
var hash = window.location.hash || '';
var legacyProgrammingPath = /\/Services\/programming(?:%26|&)databases(?:\.html)?$/i;
if (legacyProgrammingPath.test(path)) {
window.location.replace('https://knightlogics.com/service-ai-automation');
}
if (/\.html$/i.test(path)) {
var cleanPath = path.replace(/\/index\.html$/i, '/').replace(/\.html$/i, '');
window.location.replace((cleanPath || '/') + search + hash);
} else {
window.location.replace('/');
}
</script>
<link rel="preload" as="style" href="CSS/header.min.css" onload="this.rel='stylesheet';this.onload=null">
<noscript><link rel="stylesheet" href="CSS/header.min.css"></noscript>
</head>
<body>
<main id="main-content" class="container">
<img src="/Images/KnightGroupLogo.webp" alt="Knight Group Logo">
<h1>Oops! Page Not Found</h1>
<p>You will be redirected to the homepage shortly. If not, <a href="/">click here</a>.</p>
</main>
</body>
</html>