ekart/src/app/core/layouts/header/header.html
2026-02-19 10:24:26 +05:30

32 lines
818 B
HTML

<header>
<nav class="wrapper py-4 flex justify-between items-center">
<div class="">
<a href="/" class="px-3 py-1 bg-gray-800 text-white">eKart</a>
</div>
<div class="flex space-x-4">
<ul class="flex space-x-4 font-medium font-space text-sm text-gray-600">
<li>
<a href="">Home</a>
</li>
<li>
<a href="">Products</a>
</li>
<li>
<a href="">About Us</a>
</li>
<li>
<a href="">Contact Us</a>
</li>
</ul>
<div class="flex space-x-3 text-gray-600">
<button>
<lucide-angular [img]="UserIcon" class="w-5 te" />
</button>
<button>
<lucide-angular [img]="CartIcon" class="w-5" />
</button>
</div>
</div>
</nav>
</header>