Spaces:
Running
Running
File size: 1,769 Bytes
8866126 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error - ChatbotReact</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #f9fafb;
color: #111827;
}
.container {
text-align: center;
max-width: 600px;
padding: 2rem;
}
h1 {
font-size: 2rem;
margin-bottom: 1rem;
}
p {
font-size: 1.1rem;
line-height: 1.5;
margin-bottom: 1.5rem;
}
.btn {
display: inline-block;
background-color: #3b82f6;
color: white;
padding: 0.75rem 1.5rem;
border-radius: 0.375rem;
text-decoration: none;
font-weight: 500;
transition: background-color 0.2s;
}
.btn:hover {
background-color: #2563eb;
}
</style>
</head>
<body>
<div class="container">
<h1>Oops! Something went wrong</h1>
<p>We're sorry, but it looks like there was an error loading the ChatbotReact application. This could be due to
network issues or the application might be temporarily unavailable.</p>
<p>Please try refreshing the page or come back later.</p>
<a href="/" class="btn">Retry</a>
</div>
</body>
</html> |