<header class="tw-bg-gray-900 tw-py-4 md:tw-px-4"> <div class="tw-container tw-mx-auto tw-flex tw-justify-between tw-items-center tw-px-4 md:tw-px-0">
<div class="tw-text-3xl tw-font-bold"> <a href="/home" class="hover:tw-text-gray-400">MeU Solution</a> </div> </div> <nav class="tw-bg-gray-900 tw-py-2"> <div class="tw-container tw-mx-auto">
<ul class="tw-flex tw-space-x-8 tw-justify-center md:tw-justify-end"> <div *ngFor="let item of list"> <li><a href="/{{item.href}}" class="tw-text-gray-300 hover:tw-text-white">{{item.title}}</a></li> </div>
<li><a (click)="logout()" class="tw-text-gray-300 hover:tw-text-white">Đăng xuất</a></li> </ul> </div> </nav> </header>