Skip to content

Latest commit

 

History

History
65 lines (51 loc) · 2 KB

File metadata and controls

65 lines (51 loc) · 2 KB

FkWeChat

这是 FkWeChat 的官方展示网站,基于 React + Vite + Tailwind CSS 4 构建。


项目结构

├── .github/
│   └── workflows/
│       └── deploy.yml            # GitHub Pages 自动部署工作流
├── public/
│   └── images/
│       └── features.png          # UI 预览图片
├── src/
│   ├── components/
│   │   ├── Logo.tsx              # 品牌 Logo 组件
│   │   ├── ThemeToggle.tsx       # 主题切换器
│   │   ├── HeroSection.tsx       # 首页英雄区域
│   │   ├── UIPreviewSection.tsx  # UI 预览展示
│   │   ├── FeaturesSection.tsx   # 功能特性页面
│   │   ├── PluginsSection.tsx    # 脚本插件页面
│   │   ├── InstallSection.tsx    # 安装指南页面
│   │   ├── FaqSection.tsx        # 常见问题页面
│   │   ├── CommunitySection.tsx  # 社区反馈页面
│   │   └── Footer.tsx            # 页脚组件
│   ├── features.ts               # 功能列表数据
│   ├── types.ts                  # 类型定义
│   ├── App.tsx                   # 主应用组件
│   ├── index.css                 # 全局样式
│   └── main.tsx                  # 入口文件
├── vite.config.ts                # Vite 配置
├── tailwind.config.js            # Tailwind CSS 配置
└── package.json                  # 项目依赖

快速开始

# 安装依赖
npm install

# 启动开发服务器
npm run dev

# 构建生产版本
npm run build

# 预览生产版本
npm run preview

相关链接