mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-07 13:15:17 +02:00
Updates
This commit is contained in:
81
404.html
81
404.html
@@ -6,7 +6,6 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||||
<title>404 - Page Not Found</title>
|
<title>404 - Page Not Found</title>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
|
|
||||||
<style>
|
<style>
|
||||||
* {
|
* {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@@ -15,56 +14,90 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
min-height: 100vh;
|
|
||||||
background-color: #f4f7f6;
|
|
||||||
font-family: 'Poppins', sans-serif;
|
font-family: 'Poppins', sans-serif;
|
||||||
|
background: #f7f7f7;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
height: 100vh;
|
||||||
color: #333;
|
color: #333;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
text-align: center;
|
|
||||||
max-width: 600px;
|
max-width: 600px;
|
||||||
padding: 20px;
|
padding: 40px;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-radius: 10px;
|
border-radius: 12px;
|
||||||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
|
||||||
|
animation: fadeIn 1s ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 6rem;
|
font-size: 7rem;
|
||||||
font-weight: 600;
|
color: #ff6347;
|
||||||
color: #ff5c5c;
|
font-weight: 700;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
|
animation: bounceIn 1s;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
margin-bottom: 30px;
|
|
||||||
color: #555;
|
color: #555;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.message {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
color: #888;
|
||||||
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-home {
|
.btn-home {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 12px 30px;
|
padding: 14px 30px;
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
background-color: #ff5c5c;
|
background-color: #ff6347;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
transition: background-color 0.3s;
|
transition: background-color 0.3s ease;
|
||||||
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-home:hover {
|
.btn-home:hover {
|
||||||
background-color: #e04c4c;
|
background-color: #e5533d;
|
||||||
|
transform: translateY(-2px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
margin-top: 30px;
|
font-size: 0.9rem;
|
||||||
font-size: 1rem;
|
|
||||||
color: #aaa;
|
color: #aaa;
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
to {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes bounceIn {
|
||||||
|
0% {
|
||||||
|
transform: scale(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
50% {
|
||||||
|
transform: scale(1.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
@@ -73,11 +106,19 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>404</h1>
|
<h1>404</h1>
|
||||||
<h2>Oops! The page you're looking for doesn't exist.</h2>
|
<h2>Oops! The page you're looking for doesn't exist.</h2>
|
||||||
|
<p class="message">We couldn't find the page you're looking for. But don't worry, you can go back to the home page.</p>
|
||||||
<a href="/" class="btn-home">Go Back to Home</a>
|
<a href="/" class="btn-home">Go Back to Home</a>
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<p>Snigdha OS | 2024</p>
|
<p>Snigdha OS | 2024</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// Redirect to the root index.html page after a slight delay
|
||||||
|
setTimeout(function() {
|
||||||
|
window.location.replace("/");
|
||||||
|
}, 5000); // Redirect after 5 seconds
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
@@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"><url><loc>https://snigdha-os.github.io/404</loc><lastmod>2024-12-22T21:01:08.237Z</lastmod><changefreq>daily</changefreq><priority>1.0</priority></url><url><loc>https://snigdha-os.github.io/</loc><lastmod>2024-12-22T21:01:08.237Z</lastmod><changefreq>daily</changefreq><priority>1.0</priority></url></urlset>
|
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"><url><loc>https://snigdha-os.github.io/404</loc><lastmod>2024-12-22T21:09:03.074Z</lastmod><changefreq>daily</changefreq><priority>1.0</priority></url><url><loc>https://snigdha-os.github.io/</loc><lastmod>2024-12-22T21:09:03.074Z</lastmod><changefreq>daily</changefreq><priority>1.0</priority></url></urlset>
|
Reference in New Issue
Block a user