feat(home): 重构首页界面并移除文章相关页面

- 添加公司信息配置文件,包含项目名称、地址、经营范围等
- 实现404页面路由,显示页面建设中提示和导航按钮
- 在首页集成公司信息展示,包括经营范围和资质信息
- 移除文章列表页、文章详情页、栏目页和单页内容相关功能
- 更新Ant Design主题配色为绿色主色调
- 简化首页布局,突出业务板块和服务导向设计
- 删除部署方案和开通流程等临时页面内容
This commit is contained in:
2026-01-27 09:51:14 +08:00
parent 775841eed3
commit a83f2969d8
17 changed files with 423 additions and 1446 deletions

View File

@@ -17,10 +17,8 @@
<a-col :xs="24" :md="8">
<div class="text-base font-semibold text-white">快速入口</div>
<div class="mt-4 grid gap-2 text-sm text-gray-400">
<NuxtLink class="hover:text-white" to="/platform">平台能力</NuxtLink>
<NuxtLink class="hover:text-white" to="/products">产品矩阵</NuxtLink>
<NuxtLink class="hover:text-white" to="/market">模板/插件市场</NuxtLink>
<NuxtLink class="hover:text-white" to="/deploy">部署方案</NuxtLink>
<NuxtLink class="hover:text-white" to="/products">经营范围</NuxtLink>
<NuxtLink class="hover:text-white" to="/contact">联系我们</NuxtLink>
</div>
</a-col>
@@ -30,8 +28,21 @@
</a-col>
</a-row>
<div class="mt-10 border-t border-white/10 pt-6 text-xs text-gray-500">
© {{ year }} {{ siteName }}. All rights reserved.
<div
class="mt-10 flex flex-col gap-2 border-t border-white/10 pt-6 text-xs text-gray-500 md:flex-row md:items-center md:justify-between"
>
<div>© {{ year }} {{ siteName }}. All rights reserved.</div>
<div class="tools flex items-center opacity-80 hover:opacity-90 text-gray-100 text-xs">
Powered by
<a
rel="nofollow"
href="https://site.websoft.top"
target="_blank"
class="text-white visited:text-white hover:text-gray-200 ml-1"
>
·企业官网
</a>
</div>
</div>
</div>
</a-layout-footer>
@@ -53,4 +64,3 @@ const year = new Date().getFullYear()
padding: 0;
}
</style>