-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
69 lines (63 loc) · 2.48 KB
/
Copy path404.html
File metadata and controls
69 lines (63 loc) · 2.48 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
<!DOCTYPE html>
<html lang="bn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>পাতা খুঁজে পাওয়া যায়নি - পাঠক ঘর</title>
<meta name="description" content="আপনি যে পাতাটি খুঁজছেন সেটি পাওয়া যাচ্ছে না।">
<link rel="icon" type="image/webp" href="https://pathokghar.pages.dev/assets/photos/pathokghar-logo.webp">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: { extend: { colors: { brand: { 500: '#c0392b', 600: '#a93226' } } } }
}
// layout.html এর মতো dark mode sync
(function() {
if (localStorage.getItem('theme') === 'dark' ||
(!localStorage.getItem('theme') && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark');
}
})();
</script>
<style>
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
.not-found-num {
font-size: 6rem;
font-weight: 900;
line-height: 1;
color: #c0392b;
letter-spacing: -0.04em;
opacity: 0.15;
user-select: none;
}
.dark .not-found-num { opacity: 0.12; }
.nf-btn-primary {
display: inline-flex;
align-items: center;
padding: 0.6rem 1.4rem;
background: #c0392b;
color: #fff;
font-weight: 700;
font-size: 0.95rem;
text-decoration: none;
transition: background 0.15s;
-webkit-tap-highlight-color: transparent;
}
.nf-btn-primary:hover { background: #a93226; }
.nf-btn-primary:active { background: #922b21; }
</style>
</head>
<body class="bg-gray-50 text-gray-800 dark:bg-[#1a1a1b] dark:text-gray-200 min-h-screen">
<div class="max-w-2xl mx-auto px-4 py-20">
<div class="not-found-num">৪০৪</div>
<h1 class="text-2xl font-bold text-gray-800 dark:text-gray-100 mt-4 mb-2">
পাতাটি খুঁজে পাওয়া যাচ্ছে না...
</h1>
<p class="text-gray-500 dark:text-gray-400 text-base mb-8 max-w-sm">
আপনি যে পাতাটি খুঁজছেন সেটি সরানো হয়েছে, নামবদল হয়েছে, অথবা আদৌ ছিল না।
</p>
<a href="/" class="nf-btn-primary">হোমপেজে যান</a>
</div>
</body>
</html>