Footer.vue
2.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<template>
<footer
class="bg-gray-800 dark:bg-gray-950 text-white py-12 px-8 mt-auto transition-colors duration-300"
>
<div class="max-w-6xl mx-auto grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center gap-2">
<img
src="../../assets/AI-Tool-box.png"
alt="Logo"
class="h-10 w-10 mb-4"
/>
<h3 class="text-xl font-bold mb-4">
{{ webSite.webname.split("|")[0] }}
</h3>
</div>
<p class="text-gray-400">
提供安全、快速的网址跳转服务,保护您的隐私安全,本网站涵盖ppt生成,
AI写作、AI编程、AI绘画、AI设计、AI论文、AI视频、AI配音、AI音乐、AI金融等多个领域领域的AI工具软件,每日更新和添加最新AI工具,让你的工作更加高效便捷。
</p>
</div>
<div>
<h4 class="font-bold mb-4">联系我们</h4>
<ul class="space-y-2 text-gray-400">
<li>邮箱: contact@linkhub.com</li>
<li>电话: +86 400 123 4567</li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4">关注我们</h4>
<div class="flex space-x-4">
<a
href="#"
class="w-10 h-10 rounded-full bg-gray-700 dark:bg-gray-800 flex items-center justify-center hover:bg-blue-500 transition-colors"
>
<el-icon :size="20"><Star /></el-icon>
</a>
<a
href="#"
class="w-10 h-10 rounded-full bg-gray-700 dark:bg-gray-800 flex items-center justify-center hover:bg-blue-400 transition-colors"
>
<el-icon :size="20"><Link /></el-icon>
</a>
<a
href="#"
class="w-10 h-10 rounded-full bg-gray-700 dark:bg-gray-800 flex items-center justify-center hover:bg-pink-500 transition-colors"
>
<el-icon :size="20"><Star /></el-icon>
</a>
<a
href="#"
class="w-10 h-10 rounded-full bg-gray-700 dark:bg-gray-800 flex items-center justify-center hover:bg-red-500 transition-colors"
>
<el-icon :size="20"><Search /></el-icon>
</a>
</div>
</div>
</div>
<!-- <div
class="max-w-6xl mx-auto mt-8 pt-8 border-t border-gray-700 dark:border-gray-800 text-center text-gray-400"
>
<p>{{ webSite.bottomAnnouncement }}</p>
</div> -->
</footer>
</template>
<script setup>
import { Link, Search, Star } from "@element-plus/icons-vue";
const webSite = useState("webSite");
</script>
<style scoped lang="less"></style>