fedi-feed-router/resources/views/partials/sidebar.blade.php

22 lines
No EOL
1 KiB
PHP

<!-- Sidebar -->
<div class="bg-gray-800 text-white w-64 flex-shrink-0">
<div class="p-4">
<h2 class="text-xl font-bold">Lemmy Poster</h2>
<p class="text-gray-400 text-sm">Admin Panel</p>
</div>
<nav class="mt-8">
<a href="/articles" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors {{ request()->is('articles') ? 'bg-gray-700 text-white' : '' }}">
<i class="fas fa-newspaper mr-3"></i>
Articles
</a>
<a href="/logs" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors {{ request()->is('logs') ? 'bg-gray-700 text-white' : '' }}">
<i class="fas fa-list mr-3"></i>
Logs
</a>
<a href="/horizon" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors">
<i class="fas fa-chart-line mr-3"></i>
Queue Monitor
</a>
</nav>
</div>