Skip to content

Commit

Permalink
Merge pull request #140 from loftwah/dl/status-page
Browse files Browse the repository at this point in the history
add status page
  • Loading branch information
loftwah authored Sep 12, 2024
2 parents 1a42c56 + d1cfe2a commit 9076c14
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions app/views/layouts/application.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,25 @@
<%= yield %>
</main>
<footer class="bg-gray-800 shadow mt-12">
<div class="container mx-auto px-4 py-6 text-center">
<p class="text-gray-400">© 2024 Linkarooie. All rights reserved.</p>
<div class="container mx-auto px-4 py-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">
© 2024 Linkarooie. All rights reserved.
</p>
<div class="space-x-4">
<a href="https://status.linkarooie.com" target="_blank" class="bg-lime-500 hover:bg-lime-600 text-white font-bold py-1 px-3 rounded inline-flex items-center space-x-2">
<i class="fas fa-server"></i>
<span>System Status</span>
</a>
<a href="https://github.com/loftwah/linkarooie" target="_blank" class="bg-gray-700 hover:bg-gray-600 text-white font-bold py-1 px-3 rounded inline-flex items-center space-x-2">
<i class="fab fa-github"></i>
<span>GitHub</span>
</a>
</div>
</div>
</div>
</footer>
</div>
</div>
</footer>
</body>
Expand Down

0 comments on commit 9076c14

Please sign in to comment.