-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
95 lines (90 loc) · 3.75 KB
/
404.html
File metadata and controls
95 lines (90 loc) · 3.75 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Page Not Found - sheet2html</title>
<link rel="icon" type="image/png" href="favicon.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@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/mdbassit/Coloris@latest/dist/coloris.min.css"/>
</head>
<body>
<header>
<div class="header-container">
<div class="logo-section">
<a href="index.html" style="text-decoration: none; border: none;">
<img src="assets/logo.png" alt="sheet2html Logo" class="logo" />
</a>
</div>
<div class="nav-actions">
<!-- New Pricing Component -->
<div class="pricing-wrapper">
<span class="pricing-btn">Pricing</span>
<span class="free-badge">Free</span>
</div>
<!-- Your existing support button -->
<a
href="https://buymeacoffee.com/galore"
class="support-btn"
target="_blank"
rel="noopener"
>
<svg
class="icon"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
>
<path
d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"
/>
</svg>
<span>Support Us</span>
</a>
</div>
</div>
</header>
<main class="container">
<section class="hero" style="min-height: 60vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;">
<div style="font-size: 8rem; font-weight: 700; color: #000000; line-height: 1; margin-bottom: 1rem;">404</div>
<h1 style="font-size: 2rem; margin-bottom: 1rem; color: var(--text-primary);">Page Not Found</h1>
<p style="max-width: 500px; margin-bottom: 2.5rem; color: var(--text-secondary); font-size: 1.1rem; line-height: 1.6;">
The page you are looking for doesn't exist or has been moved.
Let's get you back to converting sheets.
</p>
<a href="index.html" class="btn" style="text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 1.25rem; border-radius: 50px; font-size: 0.9rem; line-height: 1; background: transparent; color: var(--text-primary); border: 1px solid var(--border-color);">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" width="20" height="20">
<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path>
<polyline points="9 22 9 12 15 12 15 22"></polyline>
</svg>
<span>Return Home</span>
</a>
</section>
</main>
<footer>
<div class="footer-content">
<span>Made with</span>
<span class="heart-icon">
<svg viewBox="0 0 24 24">
<path
d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"
/>
</svg>
</span>
<span
>by
<a href="https://blog.blacnova.net" target="_blank" rel="noopener"
>Blacnova Development</a
></span
>
</div>
</footer>
</body>
</html>