chatbot-frontend / error.html
TalatMasood's picture
Initial commit with app files
cbb8afe
<!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>