Files
gongxue-new/docs/.vitepress/theme/components/Footer.vue

109 lines
4.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts">
const currentYear = new Date().getFullYear()
</script>
<template>
<footer class="bg-apple-grey text-apple-text-gray py-16 border-t border-gray-200">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<div class="col-span-1 md:col-span-1">
<h3 class="text-apple-dark font-bold text-lg mb-4">恭学教育集团</h3>
<p class="text-xs leading-relaxed max-w-xs">
致力于为天津专升本学子提供最优质的教育资源最先进的刷题系统以及最权威的出版书籍智慧教育触手可及
</p>
</div>
<div>
<h4 class="text-apple-dark font-semibold text-sm mb-4">探索</h4>
<ul class="space-y-2 text-xs">
<li>
<a href="/question-bank" class="hover:text-apple-blue hover:underline">
刷题小程序
</a>
</li>
<li>
<a href="/online-school" class="hover:text-apple-blue hover:underline">
在线网校 APP
</a>
</li>
<li>
<a href="/books" class="hover:text-apple-blue hover:underline">
商城书籍
</a>
</li>
</ul>
</div>
<div>
<h4 class="text-apple-dark font-semibold text-sm mb-4">服务</h4>
<ul class="space-y-2 text-xs">
<li>
<a href="/knowledge/" class="hover:text-apple-blue hover:underline">
专升本知识库
</a>
</li>
<li>
<a href="/contact" class="hover:text-apple-blue hover:underline">
企业合作
</a>
</li>
<li>
<span class="cursor-pointer hover:text-apple-dark">加入我们</span>
</li>
</ul>
</div>
<div>
<h4 class="text-apple-dark font-semibold text-sm mb-4">联系我们</h4>
<ul class="space-y-2 text-xs">
<li>天津市津南区咸水沽镇雅润路东侧金浩园17号楼底商3号</li>
<li>Tel: 18322616529</li>
<li>Email: gongxuejiaoyu@sina.cn</li>
</ul>
</div>
</div>
<div class="pt-8 border-t border-gray-300">
<div class="flex flex-col md:flex-row justify-center items-center gap-4 mb-4 text-xs">
<a
href="https://beian.miit.gov.cn/"
target="_blank"
rel="noopener noreferrer"
class="text-apple-text-gray hover:text-apple-blue flex items-center gap-1"
>
津ICP备19008758号-1
</a>
<a
href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=12011202000308"
target="_blank"
rel="noopener noreferrer"
class="text-apple-text-gray hover:text-apple-blue"
>
津公网安备 12011202000308
</a>
</div>
<div class="text-center text-xs text-apple-text-gray mb-4">
违法和不良信息举报电话:
<a href="tel:18322616529" class="text-apple-blue hover:underline ml-1">18322616529</a>
举报邮箱:
<a href="mailto:gongxuejiaoyu@sina.cn" class="text-apple-blue hover:underline ml-1">gongxuejiaoyu@sina.cn</a>
</div>
<div class="flex flex-col md:flex-row justify-between items-center text-xs">
<p>Copyright © {{ currentYear }} Gongxue Education Group. 保留所有权利</p>
<div class="flex space-x-4 mt-4 md:mt-0">
<a href="/privacy-policy" class="hover:text-apple-blue hover:underline">
隐私政策
</a>
<a href="/terms-of-service" class="hover:text-apple-blue hover:underline">
使用条款
</a>
<span class="cursor-pointer hover:underline">网站地图</span>
</div>
</div>
</div>
</div>
</footer>
</template>