Footer.vue 2.0 KB
<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>&copy; {{ 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>