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

38 lines
2.1 KiB
PHP
Raw Normal View History

2025-07-05 01:17:24 +02:00
<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>
2025-07-05 02:19:59 +02:00
2025-07-05 01:17:24 +02:00
<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' : '' }}">
2025-07-06 01:42:39 +02:00
<x-heroicon-o-newspaper class="w-5 h-5 mr-3" />
2025-07-05 01:17:24 +02:00
Articles
</a>
2025-07-05 01:55:53 +02:00
<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' : '' }}">
2025-07-06 01:42:39 +02:00
<x-heroicon-o-share class="w-5 h-5 mr-3" />
2025-07-05 01:55:53 +02:00
Platforms
</a>
2025-07-05 02:29:50 +02:00
<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' : '' }}">
2025-07-06 01:42:39 +02:00
<x-heroicon-o-hashtag class="w-5 h-5 mr-3" />
2025-07-05 02:29:50 +02:00
Channels
2025-07-05 02:19:59 +02:00
</a>
2025-07-05 02:37:38 +02:00
<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' : '' }}">
2025-07-06 01:42:39 +02:00
<x-heroicon-o-rss class="w-5 h-5 mr-3" />
2025-07-05 02:37:38 +02:00
Feeds
</a>
2025-07-05 18:26:04 +02:00
<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' : '' }}">
2025-07-06 01:42:39 +02:00
<x-heroicon-o-arrow-path class="w-5 h-5 mr-3" />
2025-07-05 18:26:04 +02:00
Routing
</a>
2025-07-05 01:17:24 +02:00
<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' : '' }}">
2025-07-06 01:42:39 +02:00
<x-heroicon-o-list-bullet class="w-5 h-5 mr-3" />
2025-07-05 01:17:24 +02:00
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">
2025-07-06 01:42:39 +02:00
<x-heroicon-o-chart-bar class="w-5 h-5 mr-3" />
2025-07-05 01:17:24 +02:00
Queue Monitor
</a>
</nav>
2025-07-05 02:19:59 +02:00
</div>