unioil-cms-fe/resources/views/livewire/about-us/top-nav/terms-and-privacy.blade.php

19 lines
694 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/about-us/terms-and-privacy" class="hover:text-orange-600">Terms & Privacy</a>
</div>
<!-- Page Title -->
<h3 class="text-5xl font-semibold text-gray-800 mt-4">Terms & Privacy</h3>
<!-- Bottom border -->
<div class="border-b border-gray-300 mt-5"></div>
</div>