Files
smalltown/README.md

42 lines
889 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 城中村租房平台
一个简洁的城中村租房信息平台,支持房东发布房源、租客浏览联系。
## 功能特点
- **租客端**:无需登录,直接浏览和搜索房源
- **房东端**:简单密码认证,发布和管理房源
- **移动端优先**:适配手机访问的响应式设计
## 技术栈
- Next.js 16 + TypeScript
- TailwindCSS
- JSON文件存储无需数据库
## 快速开始
```bash
npm install
npm run dev
```
访问 http://localhost:3000
## 页面说明
- `/` - 租客浏览页面(首页)
- `/house/[id]` - 房屋详情页
- `/owner` - 房东登录/注册
- `/owner/dashboard` - 房东管理后台
## 数据存储
数据存储在 `data/` 目录下的 JSON 文件中:
- `data/houses.json` - 房源数据
- `data/users.json` - 房东账号数据
## 部署
本项目可部署到 Vercel无需额外配置数据库。