|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>Page Not Found | MindCore</title> |
| 7 | + <meta name="description" content="The page you're looking for doesn't exist or has been moved."> |
| 8 | + <link rel="stylesheet" href="styles.css"> |
| 9 | + <link rel="icon" href="assets/logo.jpg" type="image/jpeg"> |
| 10 | + <link rel="apple-touch-icon" href="assets/logo.jpg"> |
| 11 | +</head> |
| 12 | +<body> |
| 13 | + <canvas id="bg"></canvas> |
| 14 | + <div id="gradient"></div> |
| 15 | + |
| 16 | + <header class="site-header"> |
| 17 | + <div class="container flex-between"> |
| 18 | + <a href="index.html" class="brand flex-center" style="gap: 10px;"> |
| 19 | + <img src="assets/logo.jpg" alt="MindCore Logo" style="width: 32px; height: 32px; border-radius: 8px;"> |
| 20 | + <span style="font-weight: 600; font-size: 18px;">MindCore</span> |
| 21 | + </a> |
| 22 | + <button class="mobile-menu-btn" aria-label="Toggle menu">☰</button> |
| 23 | + <nav class="nav-links"> |
| 24 | + <a href="index.html" class="nav-link">Home</a> |
| 25 | + <a href="products.html" class="nav-link">Products</a> |
| 26 | + <a href="eyecore.html" class="nav-link">Infrastructure</a> |
| 27 | + <a href="echolab.html" class="nav-link">Research</a> |
| 28 | + <a href="echomind.html" class="btn btn-primary" style="padding: 6px 16px; font-size: 13px;">Get EchoMind</a> |
| 29 | + </nav> |
| 30 | + </div> |
| 31 | + </header> |
| 32 | + |
| 33 | + <main> |
| 34 | + <section class="hero" style="padding-top: 200px; padding-bottom: 200px; min-height: 80vh; display: flex; align-items: center;"> |
| 35 | + <div class="container" style="text-align: center;"> |
| 36 | + <div class="error-code" data-animate>404</div> |
| 37 | + <h1 class="text-h1" data-animate style="margin-bottom: var(--space-m);">Page Not Found</h1> |
| 38 | + <p class="text-body" data-animate style="max-width: 500px; margin: 0 auto var(--space-xl);"> |
| 39 | + The page you're looking for doesn't exist or has been moved. Let's get you back on track. |
| 40 | + </p> |
| 41 | + <div class="flex-center" style="gap: var(--space-m); flex-wrap: wrap;" data-animate> |
| 42 | + <a href="index.html" class="btn btn-primary">Go to Homepage</a> |
| 43 | + <a href="products.html" class="btn btn-secondary">View Products</a> |
| 44 | + </div> |
| 45 | + |
| 46 | + <div style="margin-top: var(--space-3xl);" data-animate> |
| 47 | + <p class="text-small" style="margin-bottom: var(--space-m); color: var(--text-tertiary);">Or try one of these:</p> |
| 48 | + <div class="flex-center" style="gap: var(--space-l); flex-wrap: wrap;"> |
| 49 | + <a href="echomind.html" class="text-small" style="color: var(--accent-color);">EchoMind</a> |
| 50 | + <a href="eyecore.html" class="text-small" style="color: var(--accent-color);">EyeCore</a> |
| 51 | + <a href="echolab.html" class="text-small" style="color: var(--accent-color);">Research</a> |
| 52 | + <a href="pages/contact.html" class="text-small" style="color: var(--accent-color);">Contact</a> |
| 53 | + <a href="pages/faq.html" class="text-small" style="color: var(--accent-color);">FAQ</a> |
| 54 | + </div> |
| 55 | + </div> |
| 56 | + </div> |
| 57 | + </section> |
| 58 | + </main> |
| 59 | + |
| 60 | + <footer class="site-footer"> |
| 61 | + <div class="container"> |
| 62 | + <div style="text-align: center;"> |
| 63 | + <p class="text-small">© 2025 MindCore LLC. All rights reserved.</p> |
| 64 | + </div> |
| 65 | + </div> |
| 66 | + </footer> |
| 67 | + |
| 68 | + <script src="scripts.js"></script> |
| 69 | +</body> |
| 70 | +</html> |
0 commit comments