-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
40 lines (40 loc) · 1.53 KB
/
Copy path404.html
File metadata and controls
40 lines (40 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 — Forail Platform</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body>
<nav class="nav">
<div class="nav-inner">
<a href="/" class="nav-logo">
<svg viewBox="0 0 32 32" fill="none"><rect width="32" height="32" rx="8" fill="#6c5ce7"/><path d="M8 10h16v2H8zm0 5h12v2H8zm0 5h14v2H8z" fill="#fff"/></svg>
Forail
</a>
<ul class="nav-links">
<li><a href="/#features">Features</a></li>
<li><a href="/docs/index.html">Docs</a></li>
</ul>
<a href="https://github.com/forail-platform" class="nav-cta">GitHub</a>
</div>
</nav>
<section class="hero" style="min-height: 80vh;">
<div class="hero-content">
<h1>404</h1>
<p>Page not found. The page you're looking for doesn't exist or has been moved.</p>
<div class="hero-buttons">
<a href="/" class="btn btn-primary">Go Home</a>
<a href="/docs/index.html" class="btn btn-outline">Browse Docs</a>
</div>
</div>
</section>
</body>
</html>