Prep for 1.0

This commit is contained in:
2025-03-31 12:33:26 +00:00
parent ac5cd4f3a0
commit 41dcd937cd
5 changed files with 98 additions and 205 deletions

30
footer.php Normal file
View File

@@ -0,0 +1,30 @@
<style>
.footer-bar {
display: flex;
justify-content: center;
align-items: center;
background-color: #333;
color: white;
padding: 10px 0;
font-family: Arial, sans-serif;
font-size: 14px;
position: fixed;
bottom: 0;
width: 100%;
}
.footer-bar a {
color: #007bff;
text-decoration: none;
margin-left: 5px;
}
.footer-bar a:hover {
text-decoration: underline;
}
</style>
<div class="footer-bar">
<span>Version 1.0.0</span>
<a href="changelog.php">View Changelog</a>
</div>