1. 로그인 동작을 위해서 viewmodel 로 관련 뷰에서 동작할 모든 로직을 viewmodel에서 관리 1.1. view 와 viewmodel의 관계는 1:N으로 동작하는것을 기반으로 두고 있음 2. API 접근하는 방식도 웹만의 접근 방법에서 수정 3. 로그인 동작 정보 받는 로직 수정
13 lines
645 B
Plaintext
13 lines
645 B
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">
|
|
<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-둥 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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |