maintenance page

This commit is contained in:
Dobromir Popov
2024-05-01 15:29:38 +03:00
parent b9f87fabfe
commit 27e1cded34

34
content/maintennce.html Normal file
View File

@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Site Maintenance</title>
<style>
body {
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
background-color: #f4f4f4;
color: #333;
text-align: center;
}
h1 {
font-size: 24px;
}
p {
font-size: 16px;
}
</style>
</head>
<body>
<div>
<h1>Well be back soon!</h1>
<p>Sorry for the inconvenience but were performing some maintenance at the moment. We'll be back up shortly!</p>
<p>&mdash; The Team</p>
</div>
</body>
</html>