feat: add copyright footer with logos for 有音教育 and 艺超音乐

This commit is contained in:
hmo
2026-04-30 23:32:36 +08:00
parent 90e93bb2b0
commit ed28c99e81
8 changed files with 39 additions and 0 deletions
@@ -0,0 +1,20 @@
<!-- 版权声明 footer -->
<footer class="bg-light text-center py-4 mt-auto border-top">
<div class="container">
<!-- 两家合作企业logo -->
<div class="d-flex justify-content-center align-items-center gap-4 mb-3">
<img src="{{ url_for('static', filename='images/有音-logo和字.png') }}"
alt="有音教育"
style="height: 40px; width: auto;"
loading="lazy">
<img src="{{ url_for('static', filename='images/艺超-logo和字.png') }}"
alt="艺超音乐"
style="height: 40px; width: auto;"
loading="lazy">
</div>
<!-- 版权文字 -->
<p class="text-muted small mb-0">
&copy; 2024-2026 有音教育 &amp; 艺超音乐 联合开发 | 个性化钢琴教学系统
</p>
</div>
</footer>