基础框架先行,编译器已无报错,项目正式创建

This commit is contained in:
2026-07-23 12:41:14 +08:00
parent 9e561e5ae6
commit 9118972a7a
12 changed files with 1004 additions and 0 deletions
View File
+22
View File
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>frpc-console</title>
<style>
body { font-family: sans-serif; background: #0d0d0d; color: #fff; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; }
.container { text-align: center; }
.container h1 { font-size: 48px; color: #63e2b7; }
.container p { color: #888; }
.container .status { display: inline-block; padding: 8px 20px; background: #1a1a1a; border-radius: 20px; color: #63e2b7; margin-top: 20px; }
</style>
</head>
<body>
<div class="container">
<h1>🚀 frpc-console</h1>
<p>后端已启动,正在等待前端接入...</p>
<div class="status">✅ frpc 运行中</div>
</div>
</body>
</html>
View File