header.component.html 752 Bytes
Newer Older
tinhbe's avatar
tinhbe committed
1 2
<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">
tinhbe's avatar
tinhbe committed
3 4 5 6 7 8 9
    <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">
tinhbe's avatar
tinhbe committed
10 11 12 13
      <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>
tinhbe's avatar
tinhbe committed
14 15 16 17 18
        <li><a (click)="logout()" class="tw-text-gray-300 hover:tw-text-white">Đăng xuất</a></li>
      </ul>
    </div>
  </nav>
</header>
tinhbe's avatar
tinhbe committed
19