fedi-feed-router/resources/views/partials/sidebar.blade.php
2025-07-10 11:01:01 +02:00

41 lines
2.4 KiB
PHP

<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' : '' }}">
<x-heroicon-o-newspaper class="w-5 h-5 mr-3" />
Articles
</a>
<a href="/platforms" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors {{ request()->is('platforms*') ? 'bg-gray-700 text-white' : '' }}">
<x-heroicon-o-share class="w-5 h-5 mr-3" />
Platforms
</a>
<a href="/channels" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors {{ request()->is('channels*') ? 'bg-gray-700 text-white' : '' }}">
<x-heroicon-o-hashtag class="w-5 h-5 mr-3" />
Channels
</a>
<a href="/feeds" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors {{ request()->is('feeds*') ? 'bg-gray-700 text-white' : '' }}">
<x-heroicon-o-rss class="w-5 h-5 mr-3" />
Feeds
</a>
<a href="/routing" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors {{ request()->is('routing*') ? 'bg-gray-700 text-white' : '' }}">
<x-heroicon-o-arrow-path class="w-5 h-5 mr-3" />
Routing
</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' : '' }}">
<x-heroicon-o-list-bullet class="w-5 h-5 mr-3" />
Logs
</a>
<a href="/settings" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors {{ request()->is('settings*') ? 'bg-gray-700 text-white' : '' }}">
<x-heroicon-o-cog-6-tooth class="w-5 h-5 mr-3" />
Settings
</a>
<a href="/horizon" class="flex items-center px-4 py-3 text-gray-300 hover:bg-gray-700 hover:text-white transition-colors">
<x-heroicon-o-chart-bar class="w-5 h-5 mr-3" />
Queue Monitor
</a>
</nav>
</div>