Footer.vue
2.0 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
<template>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12 px-8 mt-auto">
<div class="max-w-6xl mx-auto grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold mb-4">
{{ webSite.webname }}
</h3>
<p class="text-gray-400">
提供安全、快速的网址跳转服务,保护您的隐私安全。
</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 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 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 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 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 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>