-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
84 lines (73 loc) · 3.19 KB
/
404.html
File metadata and controls
84 lines (73 loc) · 3.19 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>TrendFit — Page Not Found (404)</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- SEO -->
<meta name="robots" content="noindex" />
<meta property="og:url" content="https://trendfitapp.com/404.html">
<link rel="preconnect" href="https://cdnjs.cloudflare.com">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
<link rel="stylesheet" href="css/style.css?v=2025-09-20-1" />
<script defer src="js/includes.js"></script>
<style>
.oops { text-align: center; padding: 56px 0 24px; }
.oops h1 { font-size: clamp(28px, 6vw, 44px); margin: 0 0 8px; }
.oops p { color: var(--muted); margin: 0 auto; max-width: 720px; }
.oops .actions { margin-top: 18px; display: inline-flex; gap: 10px; flex-wrap: wrap; }
.redir-note { color: var(--muted); font-size: 14px; margin-top: 14px; }
</style>
</head>
<body class="bg-gradient">
<!-- Header / Navbar -->
<!-- Shared header include -->
<div data-include="partials/header.html"></div>
<main class="oops">
<div class="container text-center">
<h1>Page not found</h1>
<p>Sorry, we can’t find that page. It may have moved, been renamed, or no longer exist.</p>
<div class="actions">
<a class="btn btn-primary" href="index.html"><i class="fa-solid fa-house"></i> Home</a>
<a class="btn btn-ghost" href="features.html"><i class="fa-solid fa-circle-info"></i> Features</a>
<a class="btn btn-ghost" href="announcements.html"><i class="fa-solid fa-bullhorn"></i> Announcements</a>
<a class="btn btn-ghost" href="privacy.html"><i class="fa-solid fa-user-shield"></i> Privacy</a>
<a class="btn btn-ghost" href="terms.html"><i class="fa-solid fa-file-contract"></i> Terms</a>
</div>
<p class="redir-note" id="redirNote" style="display:none;"></p>
</div>
</main>
<footer class="site-footer">
<div class="container footer-row">
<small>© 2025 TrendFit</small>
<div class="footer-links">
<a href="privacy.html">Privacy</a>
<span>·</span>
<a href="terms.html">Terms</a>
</div>
</div>
</footer>
<!-- Optional: gentle redirect map for legacy URLs -->
<script>
(function () {
// Map old/legacy paths to new ones (edit as needed)
var redirects = {
"/privacy-policy": "/privacy.html",
"/terms-of-service": "/terms.html",
"/beta": "/beta-feedback.html"
};
var path = location.pathname.replace(/\/+$/, ""); // trim trailing /
if (redirects[path]) {
var target = redirects[path];
var note = document.getElementById("redirNote");
if (note) {
note.style.display = "block";
note.textContent = "Redirecting you to " + target + "…";
}
setTimeout(function () { location.replace(target); }, 1200);
}
})();
</script>
<!-- Cloudflare Web Analytics --><script defer src="https://static.cloudflareinsights.com/beacon.min.js" data-cf-beacon="{"token": "88f8c60681cd4caaaa9c73ec113a9178"}"></script><!-- End Cloudflare Web Analytics -->
</body>
</html>