Footer.vue 3.25 KB
<!--
 * @Date: 2025-04-17 13:22:07
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2025-04-17 13:22:09
 * @FilePath: /reading-club-app/src/components/layout/Footer.vue
 * @Description: 文件描述
-->
<template>
  <footer class="mt-8 py-6 bg-gradient-to-r from-green-50 to-blue-50">
    <div class="container mx-auto px-4">
      <div class="flex flex-col md:flex-row justify-between items-center">
        <div class="mb-4 md:mb-0">
          <h3 class="text-xl font-bold bg-gradient-to-r from-green-500 to-blue-400 bg-clip-text text-transparent">读书会</h3>
          <p class="text-gray-600 mt-2">连接爱读书的人,共享知识的力量</p>
        </div>

        <div class="flex flex-col md:flex-row space-y-4 md:space-y-0 md:space-x-8">
          <div>
            <h4 class="font-semibold text-gray-800 mb-3">关于我们</h4>
            <ul class="space-y-2">
              <li><a href="#" class="text-gray-600 hover:text-green-500">平台介绍</a></li>
              <li><a href="#" class="text-gray-600 hover:text-green-500">使用指南</a></li>
              <li><a href="#" class="text-gray-600 hover:text-green-500">联系我们</a></li>
            </ul>
          </div>

          <div>
            <h4 class="font-semibold text-gray-800 mb-3">热门分类</h4>
            <ul class="space-y-2">
              <li><a href="#" class="text-gray-600 hover:text-green-500">文学小说</a></li>
              <li><a href="#" class="text-gray-600 hover:text-green-500">社科人文</a></li>
              <li><a href="#" class="text-gray-600 hover:text-green-500">商业财经</a></li>
            </ul>
          </div>

          <div>
            <h4 class="font-semibold text-gray-800 mb-3">关注我们</h4>
            <div class="flex space-x-4">
              <a href="#" class="text-gray-600 hover:text-green-500">
                <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                  <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 8l-8 8m0-8l8 8" />
                </svg>
              </a>
              <a href="#" class="text-gray-600 hover:text-green-500">
                <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                  <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 12h.01M12 12h.01M16 12h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
                </svg>
              </a>
              <a href="#" class="text-gray-600 hover:text-green-500">
                <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                  <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>
              </a>
            </div>
          </div>
        </div>
      </div>

      <div class="border-t border-gray-200 mt-8 pt-6 text-center">
        <p class="text-gray-500 text-sm">© 2024 读书会平台 All Rights Reserved</p>
      </div>
    </div>
  </footer>
</template>

<script setup>
// Footer组件不需要任何响应式数据或方法
</script>