two-cloudwebsite/README.md
2025-07-16 17:42:25 +08:00

42 lines
785 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.

# AWS 云代理网站
本项目基于 Next.js + TailwindCSS提供 AWS 官方风格的云服务器代理网站模板。
## 安装依赖
```bash
npm install
```
## 本地开发
```bash
npm run dev
```
访问 http://localhost:3000
## 构建与发布
```bash
npm run build
npm start
```
## 项目结构
```
aws-proxy-site/
├── components/
│ ├── Navbar.tsx
│ ├── Hero.tsx
│ ├── Features.tsx
│ └── Footer.tsx
├── pages/
│ ├── index.tsx
│ └── _app.tsx
├── public/
│ └── logo.png # 请替换为 AWS 风格 Logo
├── styles/
│ └── globals.css
├── tailwind.config.js
├── postcss.config.js
├── next.config.js
├── tsconfig.json
├── package.json
```