AcaMate_Web/Program/Views/Project/TopNav.razor
Seonkyu.kim c1fdf2773d [] 서버 반영
1. 쿠키 delete 추가
2. about 페이지  v.0.1 추가
2025-05-27 15:40:20 +09:00

18 lines
1.1 KiB
Plaintext

<div class="flex items-center justify-between whitespace-nowrap border-b border-solid border-b-[#f0f2f5] py-4 bg-white">
<div class="flex items-center gap-4 text-[#111418] ml-4">
<img src="/logo.png" alt="Icon" class="w-8 h-8">
<h2 class="text-[#111418] text-lg font-bold leading-tight tracking-[-0.015em]">AcaMate</h2>
</div>
<div class="flex flex-1 justify-end gap-8">
<div class="flex items-center gap-9">
<a class=" text-text-title font-medium leading-normal hover:text-blue-800" href="#">About</a>
<a class="text-text-title font-medium leading-normal hover:text-blue-800" href="#">Join</a>
<a class="text-text-title font-medium leading-normal hover:text-blue-800" href="#">What's New</a>
</div>
<button class="flex min-w-[84px] max-w-[480px] cursor-pointer items-center justify-center overflow-hidden rounded-lg h-10 px-4 bg-blue-500 hover:bg-blue-800 text-white text-sm font-bold leading-normal tracking-[0.015em] mr-4"
@onclick= "OnClickLogin">
<span class="truncate">Get Started</span>
</button>
</div>
</div>