Files
thankcard-system/resources/views/components/header.blade.php
T
2026-07-02 15:42:47 +07:00

20 lines
986 B
PHP

<header class="bg-transparent sticky top-0 z-30 pt-6 pb-2 px-8 flex justify-between items-center w-full">
<div class="flex items-center gap-4">
<!-- Menu hamburger -->
<button id="sidebar-hamburger" class="p-2 text-gray-500 hover:text-gray-800 rounded-md focus:outline-none transition-colors">
<svg class="w-6 h-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"/>
</svg>
</button>
</div>
<div class="flex items-center gap-4">
<!-- Primary Action Button -->
<a href="{{ route('user.send') }}" class="hidden sm:flex items-center gap-2 px-5 py-2.5 bg-[#3462f7] hover:bg-blue-700 text-white text-[14px] font-bold rounded-xl shadow-md transition-all shadow-blue-500/20">
<span class="text-lg leading-none">+</span>
Gửi Thanks card
</a>
</div>
</header>