사이트 2차 수정, 신규 페이지 추가
This commit is contained in:
@@ -15,9 +15,11 @@ withDefaults(defineProps<Props>(), {
|
||||
<img src="/images/img-itab.png" alt="innertab" >
|
||||
</NuxtLink>
|
||||
|
||||
<NuxtLink v-if="variant === 'home'" to="/coffee-chat" class="nav-cta">
|
||||
커피챗 신청
|
||||
</NuxtLink>
|
||||
<nav v-if="variant === 'home'" class="nav-actions">
|
||||
<NuxtLink to="/" class="nav-link">홈</NuxtLink>
|
||||
<NuxtLink to="/culture" class="nav-link">조직문화</NuxtLink>
|
||||
<NuxtLink to="/coffee-chat" class="nav-cta">커피챗</NuxtLink>
|
||||
</nav>
|
||||
<NuxtLink v-else to="/" class="back">← 채용 홈으로</NuxtLink>
|
||||
</div>
|
||||
</header>
|
||||
@@ -50,6 +52,27 @@ header {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* 우측 내비게이션 묶음 — 링크 + CTA */
|
||||
.nav-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: clamp(1rem, 2.4vw, 1.875rem); /* 16~30px */
|
||||
}
|
||||
|
||||
/* 일반 내비게이션 링크 (조직문화 등) */
|
||||
.nav-link {
|
||||
font-size: 0.9375rem; /* 15px */
|
||||
font-weight: 600;
|
||||
color: var(--ink-soft);
|
||||
white-space: nowrap;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
|
||||
.nav-link:hover,
|
||||
.nav-link.router-link-active {
|
||||
color: var(--ink);
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
font-size: 0.9375rem; /* 15px */
|
||||
font-weight: 700;
|
||||
|
||||
Reference in New Issue
Block a user