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

785 B
Raw Blame History

AWS 云代理网站

本项目基于 Next.js + TailwindCSS提供 AWS 官方风格的云服务器代理网站模板。

安装依赖

npm install

本地开发

npm run dev

访问 http://localhost:3000

构建与发布

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