添加页面过渡效果,更新路由元信息以设置页面标题,优化页脚内容和样式

This commit is contained in:
2025-03-05 22:23:00 +08:00
parent e423b5a1d4
commit e90753a878
6 changed files with 70 additions and 14 deletions

View File

@ -45,6 +45,26 @@
<i class="fa-solid fa-envelope"></i>
</a>
</div>
<div class="footer-content">
<p>
<a href="https://icp.gov.moe/?keyword=20251453" target="_blank"
>萌ICP备20251453号</a
>
</p>
<p>
&copy; 2025 By
<a
href="https://github.com/Kisechan"
target="_blank"
rel="nofollow noopener"
><strong>Kisechan</strong></a
>
</p>
<p style="font-size: 0.75em">
Made With <a href="https://cn.vuejs.org/">Vue3</a> &
<a href="https://element-plus.org/zh-CN/">Element Plus</a>
</p>
</div>
</el-col>
</el-row>
</el-main>
@ -120,4 +140,9 @@ onMounted(() => {
flex-direction: column;
gap: 24px; /* 设置 author-info 和 social-icons 之间的间隔 */
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
}
</style>