refactor(footer): improve HTML structure and accessibility

Optimized the footer HTML markup for better readability and web accessibility. Changes include the use of more semantic HTML, such as replacing `<center>` tags with CSS for centering content, and ensuring proper use of self-closing `<hr />` tags. This update aims to enhance maintainability and ensure a more inclusive user experience by adhering to modern web standards.
This commit is contained in:
Kumi 2024-05-22 18:02:20 +02:00
parent 0f9f8b21a4
commit d20f1d2e1b
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -1,7 +1,11 @@
<footer>
<hr>
<center>
<p><a href="https://git.private.coffee/PrivateCoffee/structables">Structables Code (AGPLv3)</a></p>
<p><a href="/privacypolicy">View privacy policy.</a></p>
</center>
</footer>
<footer class="text-center">
<hr />
<p>
<a href="https://git.private.coffee/PrivateCoffee/structables"
>Structables Code (AGPLv3)</a
>
</p>
<p>
<a href="/privacypolicy">View privacy policy.</a>
</p>
</footer>