mirror of
https://gitcode.com/leisileken/cloud-smart.git
synced 2026-09-11 10:27:20 +08:00
62 lines
3.2 KiB
Vue
62 lines
3.2 KiB
Vue
<script setup lang="ts">
|
||
|
||
|
||
const currentYear = new Date().getFullYear()
|
||
</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-2 gap-12">
|
||
<div class="lg:col-span-2">
|
||
<div class="flex items-center space-x-3 mb-6">
|
||
<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>
|
||
</div>
|
||
</div>
|
||
<p class="text-gray-400 mb-6 leading-relaxed">
|
||
专注于软件开发与智能体方案落地,为企业提供全方位的数字化转型服务。我们致力于用技术创新推动产业升级,助力企业实现智能化发展。
|
||
</p>
|
||
<div class="space-y-3">
|
||
<div class="flex items-center space-x-3 text-gray-400">
|
||
<svg class="w-5 h-5 text-primary-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"/>
|
||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"/>
|
||
</svg>
|
||
<span>西安市未央区立讯未来中心</span>
|
||
</div>
|
||
<div class="flex items-center space-x-3 text-gray-400">
|
||
<svg class="w-5 h-5 text-primary-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/>
|
||
</svg>
|
||
<span>492265466@qq.com</span>
|
||
</div>
|
||
<div class="flex items-center space-x-3 text-gray-400">
|
||
<svg class="w-5 h-5 text-primary-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
||
</svg>
|
||
<span>周一至周五 9:00-18:00</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="border-t border-gray-800">
|
||
<div class="container mx-auto px-4 sm:px-6 lg:px-8 py-6">
|
||
<div class="flex flex-col md:flex-row justify-between items-center space-y-4 md:space-y-0">
|
||
<p class="text-gray-500 text-sm">
|
||
{{ currentYear }} 西安云阶智元信息科技有限公司 版权所有
|
||
</p>
|
||
<div class="flex space-x-6 text-gray-500 text-sm">
|
||
<a href="#" class="hover:text-primary-400 transition-colors">隐私政策</a>
|
||
<a href="#" class="hover:text-primary-400 transition-colors">服务条款</a>
|
||
<a href="#" class="hover:text-primary-400 transition-colors">网站地图</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</footer>
|
||
</template> |