AcaMate_Web/Program/Views/Academy/TopNavAcademy.razor
SEAN-59 c371700e78 [] 학원용 입장페이지 작성
1. /am/...  도메인 생성
2. /am/intro 페이지 생성
3. 메인 레이아웃 상황 따라 변경
4. 로그인 정보 받아오는 로직 변경 중
4.1. 유저 정보에 대한 JSON은 받아왔으나 이를 저장하는 로직 구현 중
4.2. 로그인 정보를 받아오는 로직을 어디서 구현해야 할 지 고민 하는 중
2025-06-13 17:53:58 +09:00

18 lines
1.0 KiB
Plaintext

<div class="flex items-center justify-between whitespace-nowrap border-b border-solid border-b-[#f0f2f5] h-[72px] bg-white">
<div class="flex items-center gap-4 text-[#111418] ml-4">
<div class="w-10 h-10 rounded-full bg-gray-200 overflow-hidden">
<img src="/logo.png" alt="Icon" class="w-full h-full object-cover">
</div>
<h2 class="hidden md:block text-text-title text-lg font-bold leading-tight tracking-[-0.015em]">AcaMate</h2>
</div>
<div class="hidden md:flex flex-1 justify-end gap-8">
<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-600" href="/about">About</a>
<a class="text-text-title font-medium leading-normal hover:text-blue-600" href="/join">Join</a>
<a class="text-text-title font-medium leading-normal hover:text-blue-600" href="/new">What's New</a>
</div>
</div>
</div>
</div>