unioil-cms-fe/resources/views/livewire/member-management/top-nav/locked-account.blade.php

20 lines
721 B
PHP

<div>
<!-- anchor tag horizontally -->
<div class="flex items-center gap-2 text-sm text-gray-600">
<!-- Home link -->
<a href="/main/profile" class="flex items-center hover:text-orange-600">
<x-heroicon-o-home class="w-4 h-4 mr-1" />
<span class="leading-none">Home</span>
</a>
<x-heroicon-o-chevron-right class="w-4 h-4" />
<a href="/main/member-management/locked-account" class="hover:text-orange-600">
Locked Accounts
</a>
</div>
<!-- Page Title -->
<h3 class="text-5xl font-semibold text-gray-800 mt-4">Locked Accounts</h3>
<!-- Bottom border -->
<div class="border-b border-gray-300 mt-5"></div>
</div>