Files
MyBlog-Next/src/components/Footer.astro
T
2026-06-13 16:33:30 +08:00

50 lines
888 B
Plaintext

---
const currentYear = new Date().getFullYear();
---
<footer class="site-footer">
<div class="footer-content">
<p class="copyright">
&copy; {currentYear} 启涵的小破站
</p>
<p class="icp">
<a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">
陇ICP备2026002087号-2
</a>
</p>
</div>
</footer>
<style>
.site-footer {
margin-top: auto;
padding: 1.5rem 1rem;
text-align: center;
background-color: #f9fafb;
border-top: 1px solid #e5e7eb;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
}
.copyright,
.icp {
margin: 0 0 0.5rem 0;
font-size: 0.875rem;
color: #6b7280;
}
.icp a {
color: #6b7280;
text-decoration: none;
transition: color 0.2s ease;
}
.icp a:hover {
color: #111827;
text-decoration: underline;
}
</style>