Files
makemd/dashboard/test.html
wurenzhi eafa1bbe94 feat: 添加货币和汇率管理功能
refactor: 重构前端路由和登录逻辑

docs: 更新业务闭环、任务和架构文档

style: 调整代码格式和文件结构

chore: 更新依赖项和配置文件
2026-03-19 19:08:15 +08:00

26 lines
487 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 40px;
text-align: center;
}
h1 {
color: #333;
}
p {
color: #666;
font-size: 18px;
}
</style>
</head>
<body>
<h1>Test Page</h1>
<p>If you see this, the server is running correctly.</p>
</body>
</html>