init: 初始化 AssetX 项目仓库

包含 webapp(Next.js 用户端)、webapp-back(Go 后端)、
antdesign(管理后台)、landingpage(营销落地页)、
数据库 SQL 和配置文件。
This commit is contained in:
2026-03-27 11:26:43 +00:00
commit 2ee4553b71
634 changed files with 988255 additions and 0 deletions

41
landingpage/README.md Normal file
View File

@@ -0,0 +1,41 @@
# Asset Homepage
这是资产管理平台的前台页面项目。
## 技术栈
- Next.js 15.1.4
- React 19.0.0
- TypeScript 5
- Tailwind CSS 3.4.17
## 开发
首先,安装依赖:
```bash
npm install
```
然后,运行开发服务器:
```bash
npm run dev
```
在浏览器中打开 [http://localhost:3002](http://localhost:3002) 查看结果。
注意:此项目运行在端口 3002以避免与后台项目端口 3000冲突。
## 项目结构
- `app/` - Next.js App Router 页面和布局
- `components/` - React 组件
- `public/` - 静态资源文件
## 与后台项目的关系
- 后台项目:`asset-dashboard-next` (端口 3000)
- 前台项目:`asset-homepage` (端口 3002)
两个项目使用相同的依赖版本和配置,确保开发体验的一致性。