docs: update README.md
This commit is contained in:
120
README.md
120
README.md
@@ -17,91 +17,55 @@ beifan.cn/
|
|||||||
│ │ └── Layout.astro # 主布局组件(包含导航栏、页脚等)
|
│ │ └── Layout.astro # 主布局组件(包含导航栏、页脚等)
|
||||||
│ ├── pages/
|
│ ├── pages/
|
||||||
│ │ ├── index.astro # 首页(公司介绍)
|
│ │ ├── index.astro # 首页(公司介绍)
|
||||||
│ │ ├── qazk/ # 企安智控页面
|
│ │ ├── qazk/
|
||||||
│ │ │ └── index.astro
|
│ │ │ └── index.astro # 企安智控页面
|
||||||
│ │ ├── customization/ # 本地化定制页面
|
│ │ ├── customization/
|
||||||
│ │ │ └── index.astro
|
│ │ │ └── index.astro # 本地化定制页面
|
||||||
│ │ ├── partnership/ # 生态合作页面
|
│ │ ├── partnership/
|
||||||
│ │ │ └── index.astro
|
│ │ │ └── index.astro # 生态合作页面
|
||||||
│ │ └── intro/ # 独立产品页面
|
│ │ └── intro/ # 独立产品页面
|
||||||
│ │ ├── qazk/ # 企安智控详情页
|
│ │ ├── qazk/
|
||||||
│ │ ├── hardware/ # 硬件物联详情页
|
│ │ │ └── index.astro # 企安智控详情页
|
||||||
│ │ ├── customized-deployment/ # 本地化定制详情页
|
│ │ ├── hardware/
|
||||||
│ │ └── miniapp-manual/ # 小程序手册页
|
│ │ │ └── index.astro # 硬件物联详情页
|
||||||
|
│ │ ├── customized-deployment/
|
||||||
|
│ │ │ └── index.astro # 本地化定制详情页
|
||||||
|
│ │ └── miniapp-manual/
|
||||||
|
│ │ └── index.astro # 小程序手册页
|
||||||
│ ├── components/
|
│ ├── components/
|
||||||
│ │ └── sections/ # 各功能区块组件
|
│ │ ├── sections/
|
||||||
│ │ ├── Hero.astro
|
│ │ │ ├── Hero.astro # Hero 区域组件
|
||||||
│ │ ├── Timeline.astro
|
│ │ │ ├── Timeline.astro # 公司发展时间轴组件
|
||||||
│ │ ├── SaaS.astro
|
│ │ │ ├── Honors.astro # 公司荣誉资质组件
|
||||||
│ │ ├── Customization.astro
|
│ │ │ ├── Contact.astro # 联系方式组件
|
||||||
│ │ ├── Policy.astro
|
│ │ │ ├── SaaS.astro # SaaS化系统组件
|
||||||
│ │ ├── AccidentCases.astro
|
│ │ │ ├── Policy.astro # 政策导向组件
|
||||||
│ │ ├── Hardware.astro
|
│ │ │ ├── AccidentCases.astro # 事故案例组件
|
||||||
│ │ ├── AIModel.astro
|
│ │ │ ├── Hardware.astro # 硬件物联组件
|
||||||
│ │ ├── Honors.astro
|
│ │ │ ├── AIModel.astro # AI大模型组件
|
||||||
│ │ ├── Contact.astro
|
│ │ │ ├── Customization.astro # 本地化定制组件
|
||||||
│ │ ├── Partnership.astro
|
│ │ │ ├── Partnership.astro # 生态合作组件
|
||||||
│ │ └── Footer.astro
|
│ │ │ └── Footer.astro # 页脚组件
|
||||||
|
│ │ └── script.js # 组件脚本
|
||||||
│ └── styles/
|
│ └── styles/
|
||||||
│ └── global.css # 全局样式
|
│ └── styles.css # 全局样式
|
||||||
├── public/ # 静态资源
|
├── public/ # 静态资源
|
||||||
│ ├── img/ # 图片资源
|
│ ├── img/ # 图片资源
|
||||||
│ ├── js/ # JavaScript 文件
|
│ ├── js/
|
||||||
│ ├── docs/ # 文档资源
|
│ │ └── script.js # JavaScript 文件
|
||||||
│ └── intro/ # Intro 页面的静态资源
|
│ ├── docs/
|
||||||
│ ├── qazk/
|
│ │ └── 合作申请表.xlsx # 文档资源
|
||||||
│ ├── hardware/
|
│ ├── intro/ # Intro 页面的静态资源
|
||||||
│ ├── customized-deployment/
|
│ │ ├── qazk/ # 企安智控页面资源
|
||||||
│ └── miniapp-manual/
|
│ │ └── hardware/ # 硬件物联页面资源
|
||||||
|
│ ├── favicon.ico # 网站图标
|
||||||
|
│ ├── robots.txt # 爬虫规则
|
||||||
|
│ └── sitemap.xml # 网站地图
|
||||||
|
├── .env # 环境变量
|
||||||
|
├── .gitignore # Git 忽略文件
|
||||||
├── astro.config.mjs # Astro 配置文件
|
├── astro.config.mjs # Astro 配置文件
|
||||||
├── tailwind.config.mjs # Tailwind CSS 配置文件
|
├── tailwind.config.mjs # Tailwind CSS 配置文件
|
||||||
├── package.json # 项目依赖配置
|
└── package.json # 项目依赖配置
|
||||||
└── pnpm-lock.yaml # pnpm 锁文件
|
|
||||||
```
|
|
||||||
beifan.cn/
|
|
||||||
├── src/
|
|
||||||
│ ├── layouts/
|
|
||||||
│ │ └── Layout.astro # 主布局组件(包含导航栏、页脚等)
|
|
||||||
│ ├── pages/
|
|
||||||
│ │ ├── index.astro # 首页(公司介绍)
|
|
||||||
│ │ ├── core-business/ # 核心业务页面
|
|
||||||
│ │ │ └── index.astro
|
|
||||||
│ │ ├── partnership/ # 生态合作页面
|
|
||||||
│ │ │ └── index.astro
|
|
||||||
│ │ └── intro/ # 独立产品页面
|
|
||||||
│ │ ├── qazk/ # 企安智控详情页
|
|
||||||
│ │ ├── hardware/ # 硬件物联详情页
|
|
||||||
│ │ ├── customized-deployment/ # 本地化定制详情页
|
|
||||||
│ │ └── miniapp-manual/ # 小程序手册页
|
|
||||||
│ ├── components/
|
|
||||||
│ │ └── sections/ # 各功能区块组件
|
|
||||||
│ │ ├── Hero.astro
|
|
||||||
│ │ ├── Timeline.astro
|
|
||||||
│ │ ├── SaaS.astro
|
|
||||||
│ │ ├── Customization.astro
|
|
||||||
│ │ ├── Policy.astro
|
|
||||||
│ │ ├── AccidentCases.astro
|
|
||||||
│ │ ├── Hardware.astro
|
|
||||||
│ │ ├── AIModel.astro
|
|
||||||
│ │ ├── Honors.astro
|
|
||||||
│ │ ├── Contact.astro
|
|
||||||
│ │ ├── Partnership.astro
|
|
||||||
│ │ └── Footer.astro
|
|
||||||
│ └── styles/
|
|
||||||
│ └── global.css # 全局样式
|
|
||||||
├── public/ # 静态资源
|
|
||||||
│ ├── img/ # 图片资源
|
|
||||||
│ ├── js/ # JavaScript 文件
|
|
||||||
│ ├── docs/ # 文档资源
|
|
||||||
│ └── intro/ # Intro 页面的静态资源
|
|
||||||
│ ├── qazk/
|
|
||||||
│ ├── hardware/
|
|
||||||
│ ├── customized-deployment/
|
|
||||||
│ └── miniapp-manual/
|
|
||||||
├── astro.config.mjs # Astro 配置文件
|
|
||||||
├── tailwind.config.mjs # Tailwind CSS 配置文件
|
|
||||||
├── package.json # 项目依赖配置
|
|
||||||
└── pnpm-lock.yaml # pnpm 锁文件
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## 页面结构
|
## 页面结构
|
||||||
|
|||||||
Reference in New Issue
Block a user