Go to file
2025-07-16 17:49:46 +08:00
.next 初次提交 2025-07-16 17:42:25 +08:00
components 初次提交 2025-07-16 17:42:25 +08:00
lib 初次提交 2025-07-16 17:42:25 +08:00
pages 初次提交 2025-07-16 17:42:25 +08:00
public 初次提交 2025-07-16 17:42:25 +08:00
styles 初次提交 2025-07-16 17:42:25 +08:00
.gitignore 更改gitignore 2025-07-16 17:43:13 +08:00
next-env.d.ts 初次提交 2025-07-16 17:42:25 +08:00
next.config.js refactor: restructure next.config.js for clarity and organization 2025-07-16 17:49:46 +08:00
package-lock.json 初次提交 2025-07-16 17:42:25 +08:00
package.json 初次提交 2025-07-16 17:42:25 +08:00
postcss.config.js 初次提交 2025-07-16 17:42:25 +08:00
README.md 初次提交 2025-07-16 17:42:25 +08:00
tailwind.config.js 初次提交 2025-07-16 17:42:25 +08:00
tsconfig.json 初次提交 2025-07-16 17:42:25 +08:00

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