-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
69 lines (65 loc) · 2.73 KB
/
Copy path404.html
File metadata and controls
69 lines (65 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found | FineFoundry</title>
<meta name="description" content="The page you're looking for doesn't exist.">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="192x192" href="img/icon-192.png">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css">
<style>
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: radial-gradient(circle at top left, rgba(255,193,7,0.15), transparent 55%),
radial-gradient(circle at bottom right, rgba(211,47,47,0.25), transparent 55%),
#000;
}
.error-code {
font-size: 8rem;
font-weight: 700;
background: linear-gradient(135deg, #ffc107, #d32f2f);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
}
.error-message {
font-size: 1.5rem;
color: var(--dark-text-muted);
}
</style>
</head>
<body>
<div class="error-page">
<div class="text-center">
<div class="error-code">404</div>
<h1 class="text-light mb-3">Page Not Found</h1>
<p class="error-message mb-4">The page you're looking for doesn't exist or has been moved.</p>
<div class="d-flex gap-3 justify-content-center flex-wrap">
<a href="index.html" class="btn btn-primary btn-lg">
<i class="bi bi-house-fill me-2"></i>Go Home
</a>
<a href="docs.html" class="btn btn-outline-light btn-lg">
<i class="bi bi-book me-2"></i>Documentation
</a>
<a href="https://github.com/SourceBox-LLC/FineFoundry" target="_blank" class="btn btn-outline-light btn-lg">
<i class="bi bi-github me-2"></i>GitHub
</a>
</div>
</div>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>