unioil-cms-fe/resources/views/livewire/profile/top-nav/profile.blade.php

17 lines
582 B
PHP

<!-- top-nav/profile.blade.php -->
<div>
<!-- Home breadcrumb and page title stacked vertically -->
<div class="flex flex-col gap-6">
<!-- Home link -->
<a href="/main/profile"
class="flex items-center w-fit text-sm text-gray-600 hover:text-orange-600">
<x-heroicon-o-home class="w-4 h-4 mr-1" />
<span class="leading-none">Home</span>
</a>
<!-- Page Title -->
<h3 class="text-5xl font-semibold text-gray-800">My Profile</h3>
</div>
<div class="border-b border-gray-300 mt-5"></div>
</div>