增加开发中页面

This commit is contained in:
meimei
2025-04-22 13:48:18 +08:00
parent e309d0c7b1
commit 996061e815
2 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>项目详情</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f9;
}
.container {
text-align: center;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container h1 {
color: #333;
}
.container p {
color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>项目开发中</h1>
<p>敬请期待</p>
</div>
</body>
</html>