Spaces:
Sleeping
Sleeping
File size: 1,151 Bytes
2c184d8 | 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 | <!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</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<div class="background-animation">
<div class="gradient-orb orb-1"></div>
<div class="gradient-orb orb-2"></div>
<div class="gradient-orb orb-3"></div>
</div>
<div class="container">
<section class="result-section error glass-card" style="margin-top: 100px; display: block;">
<div class="result-icon">🔍</div>
<h3>404 - Page Not Found</h3>
<p>The page you're looking for doesn't exist or has been moved.</p>
<div style="margin-top: 30px;">
<a href="/" class="btn btn-primary">
<i class="fas fa-home"></i> Go Home
</a>
</div>
</section>
</div>
</body>
</html>
|