|
| 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 - Text Forge</title> |
| 7 | + <link rel="icon" type="image/x-icon" href="favicon.ico"> |
| 8 | + <link rel="stylesheet" href="css/styles.css"> |
| 9 | + <link rel="preconnect" href="https://fonts.googleapis.com"> |
| 10 | + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| 11 | + <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet"> |
| 12 | + <style> |
| 13 | + .error-page { |
| 14 | + min-height: 100vh; |
| 15 | + display: flex; |
| 16 | + align-items: center; |
| 17 | + justify-content: center; |
| 18 | + padding: 2rem; |
| 19 | + background: |
| 20 | + radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.15), transparent), |
| 21 | + var(--color-bg); |
| 22 | + } |
| 23 | + |
| 24 | + .error-content { |
| 25 | + text-align: center; |
| 26 | + max-width: 500px; |
| 27 | + } |
| 28 | + |
| 29 | + .error-code { |
| 30 | + font-size: 8rem; |
| 31 | + font-weight: 700; |
| 32 | + line-height: 1; |
| 33 | + background: var(--gradient-text); |
| 34 | + -webkit-background-clip: text; |
| 35 | + -webkit-text-fill-color: transparent; |
| 36 | + background-clip: text; |
| 37 | + margin-bottom: 1rem; |
| 38 | + } |
| 39 | + |
| 40 | + .error-title { |
| 41 | + font-size: 2rem; |
| 42 | + font-weight: 600; |
| 43 | + margin-bottom: 1rem; |
| 44 | + } |
| 45 | + |
| 46 | + .error-description { |
| 47 | + font-size: 1.125rem; |
| 48 | + color: var(--color-text-secondary); |
| 49 | + margin-bottom: 2rem; |
| 50 | + } |
| 51 | + |
| 52 | + .error-actions { |
| 53 | + display: flex; |
| 54 | + gap: 1rem; |
| 55 | + justify-content: center; |
| 56 | + } |
| 57 | + |
| 58 | + @media (max-width: 480px) { |
| 59 | + .error-code { |
| 60 | + font-size: 5rem; |
| 61 | + } |
| 62 | + |
| 63 | + .error-title { |
| 64 | + font-size: 1.5rem; |
| 65 | + } |
| 66 | + |
| 67 | + .error-actions { |
| 68 | + flex-direction: column; |
| 69 | + } |
| 70 | + } |
| 71 | + </style> |
| 72 | +</head> |
| 73 | +<body> |
| 74 | + <main class="error-page"> |
| 75 | + <div class="error-content"> |
| 76 | + <div class="error-code">404</div> |
| 77 | + <h1 class="error-title">Page Not Found</h1> |
| 78 | + <p class="error-description"> |
| 79 | + Oops! The page you're looking for doesn't exist or has been moved. |
| 80 | + Let's get you back on track. |
| 81 | + </p> |
| 82 | + <div class="error-actions"> |
| 83 | + <a href="index.html" class="btn btn-primary"> |
| 84 | + <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/><polyline points="9 22 9 12 15 12 15 22"/></svg> |
| 85 | + Go Home |
| 86 | + </a> |
| 87 | + <a href="https://github.com/text-forge/text-forge" class="btn btn-secondary" target="_blank"> |
| 88 | + View on GitHub |
| 89 | + </a> |
| 90 | + </div> |
| 91 | + </div> |
| 92 | + </main> |
| 93 | +</body> |
| 94 | +</html> |
0 commit comments