更新页脚内容,调整导航菜单项,更新首页描述

This commit is contained in:
2025-03-05 10:36:42 +08:00
parent 236443ff29
commit 5f8951f0a9
3 changed files with 38 additions and 17 deletions

View File

@ -1,18 +1,34 @@
<template>
<el-footer>
<div class="footer-content">
<p>© 2023 Kisechan</p>
<p>还在做还在做还在做还在做</p>
<div class="social-icons">
<a href="https://twitter.com" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://facebook.com" target="_blank">
<i class="fab fa-facebook"></i>
</a>
<a href="https://github.com" target="_blank">
<a href="https://github.com/Kisechan" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.zhihu.com/people/ptkise" target="_blank">
<i class="fab fa-zhihu"></i>
</a>
<a href="https://space.bilibili.com/174541536" target="_blank">
<i class="fab fa-bilibili"></i>
</a>
<a href="https://blog.kisechan.space" target="_blank">
<i class="fa-solid fa-blog"></i>
</a>
<a href="mailto:admin@kisechan.space" target="_blank">
<i class="fa-solid fa-envelope"></i>
</a>
</div>
<div class="footer-text">
<p>
&copy; 2025 By
<a
href="https://github.com/Kisechan"
target="_blank"
rel="nofollow noopener"
><strong>Kisechan</strong></a
>
</p>
<p>功能完善中...</p>
</div>
</div>
</el-footer>
@ -38,12 +54,12 @@
}
.social-icons a {
color: #b9b7b7;
color: #303133;
margin: 0 10px;
font-size: 24px;
}
.social-icons a:hover {
color: #dddade;
color: rgb(159.5, 206.5, 255);
}
</style>
</style>

View File

@ -7,9 +7,9 @@
<!-- 右侧导航选项 -->
<div class="menu-items">
<el-menu-item index="/">首页</el-menu-item>
<!-- <el-menu-item index="/">首页</el-menu-item> -->
<el-menu-item @click="goToBlog">博客</el-menu-item>
<el-menu-item index="/links"></el-menu-item>
<el-menu-item index="/links"></el-menu-item>
</div>
</el-menu>
</template>

View File

@ -5,9 +5,13 @@
<!-- 左侧正文 -->
<el-col :span="16">
<el-card>
<p>passage...</p>
<p>某校 SE 专业学生 CChOer </p>
<p>什么都会一点</p>
<p>
联系我
<a href="mailto:admin@kisechan.space">admin@kisechan.space</a>
</p>
<div class="github-calendar-container">
<!-- 贡献图容器 -->
<div id="github-graph"></div>
</div>
</el-card>
@ -34,11 +38,12 @@ import GitHubCalendar from "github-calendar";
// 在组件挂载后初始化 GitHub 贡献图
onMounted(() => {
GitHubCalendar("#github-graph", "Kisechan", {
responsive: true, // 响应式设计
responsive: false, // 响应式设计
tooltips: true, // 显示提示信息
headers: {
Authorization: `token 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`,
},
global_stats: false, // 显示全局统计信息
});
});
</script>