mirror of
https://gitcode.com/leisileken/cloud-smart.git
synced 2026-09-11 10:27:20 +08:00
feat: 完善官网内容与功能 - 首页数据更新、产品中心调整、产品详情页功能增强、解决方案成功案例独立、关于我们页面内容更新、联系信息修改、LOGO替换、视频资源更新、页脚优化
This commit is contained in:
@@ -2,38 +2,15 @@
|
||||
|
||||
|
||||
const currentYear = new Date().getFullYear()
|
||||
|
||||
const footerLinks = {
|
||||
products: [
|
||||
{ name: '企业级软件', path: '/products#enterprise' },
|
||||
{ name: '智能体平台', path: '/products#agent' },
|
||||
{ name: '数据分析系统', path: '/products#analytics' },
|
||||
{ name: '移动端应用', path: '/products#mobile' }
|
||||
],
|
||||
solutions: [
|
||||
{ name: '智能制造', path: '/solutions#manufacturing' },
|
||||
{ name: '金融科技', path: '/solutions#finance' },
|
||||
{ name: '医疗健康', path: '/solutions#healthcare' },
|
||||
{ name: '教育培训', path: '/solutions#education' }
|
||||
],
|
||||
company: [
|
||||
{ name: '关于我们', path: '/about' },
|
||||
{ name: '团队介绍', path: '/about#team' },
|
||||
{ name: '新闻动态', path: '/about#news' },
|
||||
{ name: '加入我们', path: '/about#careers' }
|
||||
]
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<footer class="bg-gray-900 text-white">
|
||||
<div class="container mx-auto px-4 sm:px-6 lg:px-8 py-16">
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-5 gap-12">
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-12">
|
||||
<div class="lg:col-span-2">
|
||||
<div class="flex items-center space-x-3 mb-6">
|
||||
<div class="w-12 h-12 bg-gradient-primary rounded-lg flex items-center justify-center">
|
||||
<span class="text-white font-bold text-xl">云</span>
|
||||
</div>
|
||||
<img src="/images/logo.jpg" alt="云阶智元" class="w-12 h-12 rounded-lg object-cover" />
|
||||
<div>
|
||||
<span class="font-bold text-xl">西安云阶智元信息科技有限公司</span>
|
||||
<p class="text-gray-400 text-sm">Cloud Smart Technology</p>
|
||||
@@ -64,39 +41,6 @@ const footerLinks = {
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 class="font-semibold text-lg mb-4">产品中心</h3>
|
||||
<ul class="space-y-3">
|
||||
<li v-for="link in footerLinks.products" :key="link.name">
|
||||
<a :href="link.path" class="text-gray-400 hover:text-primary-400 transition-colors">
|
||||
{{ link.name }}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 class="font-semibold text-lg mb-4">解决方案</h3>
|
||||
<ul class="space-y-3">
|
||||
<li v-for="link in footerLinks.solutions" :key="link.name">
|
||||
<a :href="link.path" class="text-gray-400 hover:text-primary-400 transition-colors">
|
||||
{{ link.name }}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3 class="font-semibold text-lg mb-4">关于公司</h3>
|
||||
<ul class="space-y-3">
|
||||
<li v-for="link in footerLinks.company" :key="link.name">
|
||||
<a :href="link.path" class="text-gray-400 hover:text-primary-400 transition-colors">
|
||||
{{ link.name }}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user