Footer.vue (823B)
1 <template> 2 <footer class="simple-footer"> 3 <p> 4 Released under the 5 <a href="https://github.com/notamitgamer/bsc/blob/main/LICENSE" target="_blank" rel="noopener noreferrer" class="footer-link">MIT License</a>. 6 </p> 7 <p>2026 © <a href="https://amit.is-a.dev" target="_blank" rel="noopener noreferrer" class="footer-link">Amit Dutta</a></p> 8 </footer> 9 </template> 10 11 <style scoped> 12 .simple-footer { 13 margin-top: 3rem; 14 padding-top: 1.5rem; 15 border-top: 1px solid var(--vp-c-divider); 16 text-align: center; 17 font-size: 13px; 18 color: var(--vp-c-text-2); 19 line-height: 1.5; 20 } 21 22 .footer-link { 23 color: var(--vp-c-brand-1); 24 text-decoration: none; 25 font-weight: 500; 26 transition: color 0.2s ease; 27 } 28 29 .footer-link:hover { 30 color: var(--vp-c-brand-2); 31 text-decoration: underline; 32 } 33 </style>