42 lines
785 B
Markdown
42 lines
785 B
Markdown
# 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
|
||
``` |