-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path404.html
140 lines (127 loc) · 4.1 KB
/
404.html
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
<head>
<title>Page not found</title>
<script type="text/javascript">
window.isErrorPage = true;
window.errorCode = '404';
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Page not found">
<script src="/_src-lp/scripts/scripts.js" type="module" crossorigin="use-credentials"></script>
<script type="module">
import { sampleRUM } from '/_src-lp/scripts/lib-franklin.js';
window.addEventListener('load', () => {
if (document.referrer) {
const { origin, pathname } = new URL(document.referrer);
if (origin === window.location.origin) {
const backBtn = document.createElement('a');
backBtn.classList.add('button', 'error-button-back');
backBtn.href = pathname;
backBtn.textContent = 'Go back';
backBtn.title = 'Go back';
const btnContainer = document.querySelector('.button-container');
btnContainer.append(backBtn);
}
}
sampleRUM('404', { source: document.referrer, target: window.location.href });
});
</script>
<link rel="stylesheet" href="/_src-lp/styles/styles.css">
<style>
main.error {
min-height: calc(100vh - var(--nav-height));
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
main.error .error-number {
width: 100%;
font-size: 9rem;
font-weight: bold;
height: 150px;
margin: 0px;
text-align: center;
}
main.error .error-message {
font-size: 32px;
margin: 0;
}
main.error .error-message-2 {
font-size: 24px;
margin-top: 10px;
}
main.error .links-section {
border-radius: 1rem;
background-color: #f4f4f4;
}
main.error .links-pair {
display: flex;
flex-direction: column;
}
main.error .links-pair a {
color: #005ed9;
padding-bottom: 15px;
text-decoration: none;
font-weight: 500;
}
main.error .links-pair a::after {
background: url(/images/blue-arrow.svg);
content: "";
display: inline-block;
width: 15px;
height: 10px;
margin-left: 5px;
-webkit-transform: translateX(0);
transform: translateX(0);
background-size: cover;
-webkit-transition: all .2s cubic-bezier(.4,0,.2,1);
transition: all .2s cubic-bezier(.4,0,.2,1);
position: relative;
top: 0;
}
main.error .popular-sections {
color: #676767;
font-size: 16px;
margin-bottom: 10px;
}
@media (width >= 576px) {
main.error .links-pair a {
width: 250px;
}
main.error .links-pair {
flex-direction: row;
}
}
</style>
<link rel="stylesheet" href="/_src-lp/styles/vendor/bootstrap.min.css">
<link rel="stylesheet" href="/_src-lp/styles/lazy-styles.css">
</head>
<body>
<header></header>
<main class="error section">
<h1 class="error-number">404</h1>
<h2 class="error-message">Page Not Found</h2>
<p class="error-message-2">The page you are looking for might have been removed,<br class="d-none d-md-block"> had its name changed, or is temporarily unavailable.</p>
<div class="links-section p-5 my-5">
<h3 class="popular-sections text-center">Our most popular sections</h3>
<div>
<div class="links-pair">
<a href="https://www.bitdefender.com/solutions">Consumer Solutions</a>
<a href="https://www.bitdefender.com/consumer/support">Support for Home Products</a>
</div>
<div class="links-pair">
<a href="https://www.bitdefender.com/business">Business Solutions</a>
<a href="https://www.bitdefender.com/business/customer-portal/enterprise-standard-support.html"> Support for Business Products</a>
</div>
<div class="links-pair">
<a href="https://www.bitdefender.com/blog.html">Blog</a>
<a href="https://community.bitdefender.com">Community</a>
</div>
</div>
</div>
</main>
<footer></footer>
</body>
</html>