mirror of
https://github.com/Zie619/n8n-workflows.git
synced 2025-11-25 11:29:34 +08:00
45 lines
1.3 KiB
HTML
45 lines
1.3 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>404 - Page Not Found</title>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
min-height: 100vh;
|
||
|
|
margin: 0;
|
||
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
.container {
|
||
|
|
text-align: center;
|
||
|
|
padding: 2rem;
|
||
|
|
}
|
||
|
|
h1 { font-size: 6rem; margin: 0; }
|
||
|
|
p { font-size: 1.5rem; margin: 1rem 0; }
|
||
|
|
a {
|
||
|
|
display: inline-block;
|
||
|
|
margin-top: 2rem;
|
||
|
|
padding: 1rem 2rem;
|
||
|
|
background: white;
|
||
|
|
color: #667eea;
|
||
|
|
text-decoration: none;
|
||
|
|
border-radius: 5px;
|
||
|
|
transition: transform 0.2s;
|
||
|
|
}
|
||
|
|
a:hover { transform: scale(1.05); }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<h1>404</h1>
|
||
|
|
<p>Page not found</p>
|
||
|
|
<p>The n8n workflows repository has been updated.</p>
|
||
|
|
<a href="/n8n-workflows/">Go to Homepage</a>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|